>>>>> "G" == G Milde <[EMAIL PROTECTED]> writes:
G> *Pro* of a "with source" documentation is, that it is provided by
G> the people knowing what is going on. And its (at least in theory)
G> easier to keep the documentation in sync.
This holds only if this information is kept up to date.
G> *Pro* of an external documentation project is, that the work can be
G> shared and maybe the documentation becomes more consistent.
And that it may go faster.
G> Also, LyXAction.C contains a "column" for tags (is there an
G> explanation of these tags somewhere?)
LyXAction.h says:
/// possible "permissions" for an action
enum func_attrib {
Noop = 0, //< nothing special about this func
ReadOnly = 1, //< can be used in RO mode (perhaps this should
change)
NoBuffer = 2, //< Can be used when there is no document open
Argument = 4, //< Requires argument
NoUpdate = 8 //< Does not (usually) require update
};
I do not think NoUpdate is relevant to documentation. It is internal
only.
JMarc