Skip to main content

Cube for the Brainomics Project, see http://www.brainomics.net/

Project description

Cube for the Brainomics Project, see http://www.brainomics.net/

Uicfg documentation

In Brainomics, we have experimented a new function for uicfg that allows to display specific rset/information within the ‘attributes’ or ‘relations’ sections of the primary view.

The display_rset method of uicfg take 3 arguments:

  • the name of the etype concerned by the rule;

  • the section where the information is displayed (attributes or relations);

  • a dictionnary of properties.

The dictionnary of properties must have:

  • a ‘callback’ item OR a ‘rql’ and a ‘vid’ items.

The ‘callback’ is a function that takes the entity and render an HTML snipet.

The ‘rql’ is a rql query where the variable ‘X’ is the current entity. The ‘vid’ is the __regid__ of the view that will be applied to the result of the rql query.

It could also have:

  • a ‘label’ (’’ if not given);

  • an ‘order’ (9999 if not given);

It should be used as follows, e.g. using an etype property:

>>> _pvdc = uicfg.primaryview_display_ctrl
>>> _pvdc.display_rset('MyEtype', 'attributes',
                       {'callback': lambda x: x.formatted_description,
                        'label': _('description')})

or with a ‘rql’ and ‘vid’ attributes:

>>> _pvdc = uicfg.primaryview_display_ctrl
>>> _pvdc.display_rset('MyEtype', 'relations',
                       {'rql': 'Any Z WHERE X relation1 Y, Y relation2 Z',
                        'vid': 'my-view',
                        'label': _('My label')})

or with a ‘callback’ using a view:

>>> _pvdc = uicfg.primaryview_display_ctrl
>>> _pvdc.display_rset('MyEtype', 'relations',
                       {'callback': lambda x: x.view('my-secondary-view'),
                       'order': 2,
                       'label': _('My label')})

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cubicweb-brainomics-0.12.0.tar.gz (204.9 kB view details)

Uploaded Source

File details

Details for the file cubicweb-brainomics-0.12.0.tar.gz.

File metadata

File hashes

Hashes for cubicweb-brainomics-0.12.0.tar.gz
Algorithm Hash digest
SHA256 3b62f9876f31ce28c6d47384256447bc2c009bf59d4ecb366b1ef3771f389a1e
MD5 1873d9ac9edafe52938d450512a51ad0
BLAKE2b-256 9ab48193d1cdc9951ed9710e4f14b21f279bdd85c0bd43b8dddaba6eb91c77b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page