Parsing is limited and won't scale long term #6
Labels
enhancement
New feature or request
help wanted
Extra attention is needed
question
Further information is requested
The parsing mechanism has room for improvement.
This refers to the way the application converts items it displays (to the user) into dictionaries analogous to what's found in the databases, and vice-versa.
This is achieved by so-called mappings, which take a parameters in strings such as
"{username} likes chocolate"
and map them to the path within any database item. This is represented by a dot-separated string, eg.name.login.username
, which in turn means the fieldusername
can be found by following the path:This is useful for searching and to keep data structured.
Sadly, it is limited by its expressiveness. For instance, I haven't worked out how to map lists, nor investigated if there are other tools out there for this purpose.
The text was updated successfully, but these errors were encountered: