emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Using Org-mode file format for storing configuration data


From: Daniel Clemente
Subject: Re: [O] Using Org-mode file format for storing configuration data
Date: Wed, 02 Jan 2013 03:03:19 +0100
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.8 Emacs/24.3.50 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

El Sun, 30 Dec 2012 19:04:25 +0100 Karl Voit va escriure:
> 
> I plan to implement a new weblog system that parses Org-mode files
> and generates (static) HTML output. Yes, I am aware that there are
> other solutions out there but I do not like them for various
> reasons.[1]

  Nice! I also don't like existing solutions and I was thinking on writing some 
Python to do the export. But the complexities of exporting are so well resolved 
in elisp that it's much easier to invoke elisp code than to write your own in 
Python.


> 
> So for my new system, I am thinking of using Org-mode files for
> writing (and parsing) the user-defined preferences.

  I happened to be thinking the same two days ago. I wanted a place for scripts 
to store data as key→value pairs: e.g. configurations, or observations (like: 
file count on ~). Normally I would use lots of small hidden files for that. Now 
I wanted a central registry.
  I thought of using some cache server, or a small NoSQL database, or a system 
monitor for observations (e.g. collectd), and of course, org-mode. In the end, 
I think I will stay with the many small files; it's much easier!
  

>   - In Python I have to parse a basic sub-set of Org-mode format
>     anyhow. An additional parser would be more work to do.

  Don't do it from scratch; there are already some parsers which work. I tried: 
https://github.com/bjonnh/PyOrgMode


> - Possible methods to store configuration/settings of a weblog system
>   that scans Org-mode files to generate HTML:
>   - in drawers: see below
>   - in tables: see below
>   - in tags: see below
>   - other possibilities?
> 
   From the ones you say, I prefer property drawers. It's the most DB-like and 
it's analogous to storing data (well, strings).
   You don't need all the table benefits (reordering, exporting, formatting, 
formulae, …).
   Nor the tags benefits (search, multiple tags, …)


> What do you think of this?
> Can you imagine a better way of storing key-value-pairs in Org-mode?
> 
> My focus is user friendly maintenance and overview including in-line
> documentation of the preferences.

  Of course, storing configuration in .org is very utopic (being all .org), but 
I would prefer *not* to do it. I would use a simple ~/.file.conf with some 
variables in the usual style:

# a comment
path=~/web/
# where to export images
images=~/web/images


  I think this wins for usability and „friendly maintenance“, since people know 
it and it works. And it allows you to define many projects (e.g. check the 
configuration file for the program unison).

  There are even libraries to parse these simple files: 
http://docs.python.org/2/library/configparser.html

  And if you want to design an equivalent grammar for configuration files 
(beware! that's another adventure!), check http://augeas.net/ . It can 
manipulate configuration files in a format-agnostic way.


  But I think it's more important to center efforts in developing a good 
exporter web publisher. As you said, the current ones are not powerful enough.

  Good luck.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]