Lumiera
The new emerging NLE for GNU/Linux
State Idea
Date Sa 06 Okt 2012 16:47:44 CEST
Proposed by Ichthyostega <prg@ichthyostega.de>
Abstract

The Lumiera Website and Documentation uses a lightweight, plain text based infrastructure built on top of Asciidoc and Git. To help with everyday authoring and editorial tasks, a set of support facilities is proposed, to be integrated seamlessly into the existing infrastructure. The front-end to these tools is specific markup, allowing for cross-linking, tag-based link lists and semi-automatic building of glossary pages.

Description

Some time ago, the Lumiera core developer team decided against using a Content Management System for the Website and Documentation. While the rationale backing those decisions still remains valid, CMS do exist for a reason. The everyday task of authoring and editing a large body of text poses some specific challenges — this RfC proposes a set of rather simple support tools to help coping with these.

Use Cases

Authoring

For now, the authoring of new content is mostly the responsibility of the core developers. It needs to be done close to the related coding activities, typically once a new facility is finished or in the final stages of completion. It is crucial for this activity not to impose a context switch on the writer. It must be “just writing down the obvious” — otherwise developers tend to defer this activity “for later”. This situation creates some unique problems…

  • during the write-up, the coder-author realises several external presuppositions, which, during the act of coding, seemed to be “obvious” and “self evident”.

  • since expanding on all of those secondary topics is out of scope (the author would rather abandon the task of documentation altogether), the only solution is to allow for cross linking, even if the new links are dangling; well at least for the moment.

  • the author can’t invest the effort to locate additional relevant documents, nor hunt for URLs; the author is disinclined to consult a markup syntax reference. This arises from the nature of the required text which is essentially difficult to grasp in the first place and even more difficult too put into words. A task requiring full mental concentration.

Integrating Content

This task is often prompted by some kind of external cause: it might be someone asking for explanations and while trying to respond, it was determined that “this should be in the documentation”. Thus, some existing markup is extracted from an external system and pasted into some location, “just for the moment”. Of course, this content will be forgotten and rest there for years to come. To counter act such a situation, we propose the following:

  • structural cross-references of the integrated markup needs to be easy to do.

  • a way in which we can somehow hook the new content into our current scheme of categories

  • the person integrating the content wont’t be willing to visit a lot of other locations, or to read a syntax reference for some kind of advanced markup.

Editorial work

The editor reviews current content. He’ll try to emulate an assumed user’s point of view to judge the adequacy of the presentation. This leads to rearranging and re-locating pages and whole trees of pages, even splitting some of them, and adding introductory paragraphs and pages here and there — all without the ability to read or understand any of the reviewed material to any degree of depth.

  • this work will be performed on the primary content using its “natural” representation: that is, the editor will copy and move files in the file system and edit text. There is no room for using any external system (unless such an external system is a fully integrated authoring environment).

  • the editor needs an easy way for creating thematic groupings and overview pages.

  • rearranging and splitting of pages must not break any meta-markup.

Tools for the task at hand

This RfC proposes a set of tools to improve these problems. More specifically, this proposal details a possible front end for these tools, in a way which blends well with the existing Git / Asciidoc website infrastructure.

Cross-linking by textual ID

Some kind of markup allowing the author at his own discretion (read: not automagically) to create a cross-link to another piece of information, identified just by a textual short-hand or ID (read: not requiring any kind of URL). The markup must be very lightweight and should be very similar, if not identical to the markup for setting an external link, e.g. link:SomeTopic[see the explanation of Some Topic]

Variations and extensions

  • we might consider detecting CamelCaseWords. This has some Pros and Cons. If we do so, we need some easy to use escape mechanism, and this CamelCase detection must not trigger within code examples and other kinds of literal quotes.

  • specifying the displayed link text should be optional

  • we might consider adding some domain prefixes, e.g. link:rfc:SomeTopic or link:ticket:SomeTopic or link:code:SomeTopic

Obviously, these cross-links need to be resilient against content reorganisation after-the-fact. Effectively this mandates introducing some kind of indirection, since we can’t afford to regenerate the whole website’s HTML pages after each localised change. A possible solution could be to make the rendered cross link invoke a JavaScript function, which in turn consults some kind of index table. Another solution would be to let the cross link point to a server sided script.

Tag extractor and Index

Define suitable ways to attach tags to various kinds of content. The syntax will be tailored to the kind of content in question, typically placing a tag in, for example, a comment or possibly in a special header. For larger documents, it would be desirable to attach tags in a more fine-grained manner, e.g. tag only one paragraph or sub-section (but this is a nice-to-have, since it is anything but trivial to implement).

Based on these tags, there should be a mechanism to integrate a list of links into some Asciidoc page. Obviously this list needs to be dynamic, e.g. by using JavaScript or by including pre-fabricated HTML fragments into an IFrame, since it is impossible to re-generate all overview pages whenever some new resource gets tagged.

Tags should optionally support a key-value structure, allowing for additional structures and functionality to be built on top. E.g. the cross-linking facility detailed above could rely on additional tags id:SomeTopic for disambiguation. The values in such a key-value definition should be an ordered list, allowing to use all, or alternatively for the first-one or last-one to take precedence.

Definition entries

Define a suitable format to promote an existing piece of information into a definition. While not interfering with the presentation at the textual location of this definition, the mechanism should support the possibility of providing a definition in the source which is then extracted from the text and presented in a new file as, for example, a glossary of terms. It would be nice if such a generated glossary could provide an automatic back-link to the location where the definition was picked up initially.

Of course, defining such a markup includes some reasoning about the suitable format of a glossary and definition-of-terms. (Scope? Just a sentence? Just a paragraph? How to utilise existing headings?)

Additionally, this term-definition facility could be integrated with the other facilities described above:

  • cross links could pick up the ID of term definitions

  • tags could be used to create focussed definition lists.

Constraints

Please consider that the user of these facilities, i.e. the author or documentation editor, is in no way interested in using them. He will not recall any fancy syntax, and he won’t stick to any rules for sure. So, anything not outright obvious is out of question.

  • since we don’t want fully dynamic page generation and we can’t afford regenerating the whole website for each small update, all of these facilities need some way to be integrated into the present infrastructure with the least amount of change as pssible.

  • we need to build leeway into the system at various places. E.g. the cross-link facility needs a strategy to generate and match the IDs and order possible matches in a sensible way. What initially links to some doxygen comment might later on point to a glossary if applicable.

  • since content will be re-arranged just by editing text, each markup needs to be close to the related content text, to increase the chances of keeping it intact.

Tasks

  • identify the actual use case(s) (✔ done)

  • define the required facilities (✔ done)

  • consider an implementation strategy WIP

  • define a suitable markup WIP

  • write the necessary scripts TBD

  • test and integrate it into the website TBD

Discussion

Pros

  • in line with the general spirit of our Website infrastructure

  • can be adopted gradually

Cons

  • the required scripts are non-trivial

  • added complexity to the page template and website framework

  • running multiple scripts on git push might become a performance bottleneck

Alternatives

  1. status quo: not doing anything to address this issues won’t hurt us much right now,
    but increasingly works against building a well structured body of information

  2. using a mature CMS: this is what most people do, so it can’t be uttermost wrong.
    Yet still, the benefits of running a CMS need to outweigh the known problems, especially

    • lock-in, “insular” ecosystem, being tied to the evolution of a platform “not invented here”

    • separation from the code tree, lack of seamless SCM integration

    • the general penalties of using a database backed system

  3. writing our own integrated authoring framework: obviously, this would be the perfect solution… Anyone™ to volunteer?

Rationale

Since we still want to run our website based on very lightweight infrastructure, we need to amend some of the shortcomings and provide a minimal set of support tools. The primary purpose of these tools is to reduce the burden of providing structured access to the documentation content. Using some special markup and a preprocessor/extractor script allows for gradual adoption and seamless integration with the existing content. The proposed markup is deliberately kept simple and self-evident for the user; the price to pay for that ease of use comes in terms of script complexity — the latter can be considered a one-time investment.

Comments

To put this RfC into perspective, I’d like to add that Benny and myself reworked several of the introductory pages during our last meeting at FrOSCon 2012. We had some discussions about what needs to be done in order to make the existing content more readily available.

In the previous years, I’ve written a good deal of the existing content, so I might claim some knowledge about the real world usage situation. This RfC is an attempt to share my understanding about the inherent impediments of our setup and infrastructure. Especially, when compared with a full-featured wiki or CMS, a list of the most lacking features can be distilled; I am in no way against fancy stuff, but if we’re about to dedicate some effort to our infrastructure, it should be directed foremost towards fixing those stuff which matters in practice.

Ichthyostega

So 07 Okt 2012 07:31:25 CEST <prg@ichthyostega.de>