You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been working quite a bit on the collecting of project data defined by the contents of the system::projectstructure key in order to write a project, and I have arrived at something that is very functional and flexible, that I think yo will like. It goes much farther that what would simply be needed for tapemovie, so that the functions are powerful enough to satisfy the many different ways of working with span that we want to anticipate.
here's the syntax:
inside the system::projectstructure
keys that are empty dictionaries will cause the entire key to be written to the projectfile
This will write the entire contents of the namespace::del::1::time parameter, and only the value parameter of the parameter namespace::ctlmap::1::sw
wildcard ()
For now, I have enabled ONE use of the wildcard. This could be expanded (with care). If you use "" as a subkey of a key of projectstructure, the "*" will be replaced with all subkeys of that named key.
Which simply gets all of projectinfo, paths and events, but only the "quantity", "tags", "filename" and "description" subkeys of all subkeys of nodes (name of each module).
The text was updated successfully, but these errors were encountered:
I think it's necessary to include "system::projectstructure" in the projectfile. This way, when we open a project it tells the system how it should be re-saved. When we "create" a project, we can first open a "template" projectfile which will then define the system::projectstructure.
I believe this fits with what we have already discussed.
I've been working quite a bit on the collecting of project data defined by the contents of the system::projectstructure key in order to write a project, and I have arrived at something that is very functional and flexible, that I think yo will like. It goes much farther that what would simply be needed for tapemovie, so that the functions are powerful enough to satisfy the many different ways of working with span that we want to anticipate.
here's the syntax:
inside the system::projectstructure
i.e. :
This will put the entire projectinfo and paths keys into the projectfile.
i.e. :
This will write the entire contents of nodes::del, since "del" here is an empty key.
i.e. :
This will write the entire contents of namespace::filt::2 as well as the entire contents of "namespace::mouse::2" and "namespace::mouse::3"
This will write nodes::del::quantity (value), nodes::del::tags (value), and nodes::filt::active (value) to the projectfile.
another example:
This will write the entire contents of the namespace::del::1::time parameter, and only the value parameter of the parameter namespace::ctlmap::1::sw
For now, I have enabled ONE use of the wildcard. This could be expanded (with care). If you use "" as a subkey of a key of projectstructure, the "*" will be replaced with all subkeys of that named key.
I.e.
Here, the quantity and tags values of all subkeys of "nodes" will be written.
Currently, the contents of projectstructure for tapemovie are :
Which simply gets all of projectinfo, paths and events, but only the "quantity", "tags", "filename" and "description" subkeys of all subkeys of nodes (name of each module).
The text was updated successfully, but these errors were encountered: