Bases: django.forms.models.ModelChoiceField
Bases: omeroweb.webclient.custom_forms.AnnotationModelChoiceField
A MultipleChoiceField whose choices are a model QuerySet.
alias of MultipleHiddenInput
Bases: object
Bases: django.forms.models.ModelChoiceField
Bases: object
Bases: django.forms.fields.Field
Bases: django.forms.models.ModelChoiceField
Bases: omeroweb.webclient.custom_forms.ObjectModelChoiceField
A MultipleChoiceField whose choices are a model QuerySet.
alias of MultipleHiddenInput
Bases: object
Decorators for use with the webclient application.
Bases: omeroweb.decorators.login_required
webclient specific extension of the OMERO.web login_required() decorator.
Called whenever the users is successfully logged in.
This can be used to fail silently (not return 403, 500 etc. E.g. keepalive ping)
Prepares various session variables.
Bases: omeroweb.decorators.render_response
Subclass for adding additional data to the ‘context’ dict passed to templates
This allows templates to access the current eventContext and user from the L{omero.gateway.BlitzGateway}. E.g. <h1>{{ ome.user.getFullName }}</h1> If these are not required by the template, then they will not need to be loaded by the Blitz Gateway. The results are cached by Blitz Gateway, so repeated calls have no additional cost. We also process some values from settings and add these to the context.
Bases: django.forms.forms.Form
Bases: omeroweb.custom_forms.NonASCIIForm
This is the superclass of the various forms used for annotating single or multiple objects. All these forms use hidden fields to specify the object(s) currently being annotated.
Bases: omeroweb.webclient.forms.BaseAnnotationForm
Bases: omeroweb.custom_forms.NonASCIIForm
Bases: omeroweb.custom_forms.NonASCIIForm
Bases: omeroweb.custom_forms.NonASCIIForm
Bases: omeroweb.webclient.forms.BaseAnnotationForm
Bases: omeroweb.custom_forms.NonASCIIForm
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Bases: omeroweb.webclient.forms.MetadataObjectiveForm
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Helper form for new tags
Bases: omeroweb.webclient.forms.BaseAnnotationForm
Form for annotating one or more objects with existing Tags or New tags
Bases: django.forms.forms.Form
Bases: django.forms.forms.Form
Generic functionality for handling particular links and “showing” objects in the OMERO.web tree view.
Bases: exceptions.Exception
Exception to signal that we are on the wrong menu.
Bases: object
This object is used by most of the top-level pages. The “show” and “path” query strings are used by this object to both direct OMERO.web to the correct locations in the hierarchy and select the correct objects in that hierarchy.
Adds a path to the initially selected list if it is supported.
Finds the first selected object.
Loads the first selected object from the server. Will raise L{IncorrectMenuError} if the initialized menu was incorrect for the loaded objects.
@param first_obj Type of the first selected object. @type first_obj String @param attributes Set of attributes to filter on. @type attributes L{dict}
Loads a Tag based on a certain set of attributes from the server.
@param attributes Set of attributes to filter on. @type attributes L{dict}
Loads a Well based on a certain set of attributes from the server.
@param attributes Set of attributes to filter on. @type attributes L{dict}
Retrieves the first selected object. The first time this method is invoked on the instance the actual retrieval is performed. All other invocations retrieve the same instance without server interaction. Will raise L{IncorrectMenuError} if the initialized menu was incorrect for the loaded objects.
Retrieves a tuple of row and column as L{int} for a given Well name (“A1” or “1A”) string.
@param well Well name string to retrieve the row and column tuple for. @type well L{str}
Retrieves the nodes of the tree that will be initially open based on the nodes that are initially selected. Should not be invoked until after first retrieval of the L{Show.first_selected} property.
Retrieves the owner of the node closest to the root of the tree from the list of initially open nodes. Should not be invoked until after first retrieval of the L{Show.first_selected} property.
Retrieves the list of “paths” (“type-id”) we have been requested to show/select in the user interface. May be different than we were first initialised with due to certain nodes of the Screen-Plate-Well hierachy not being present in the tree. Should not be invoked until after first retrieval of the L{Show.first_selected} property.
Helper functions for views that handle object trees
Given a Dataset row (list) marshals it into a dictionary. Order and type of columns in row is:
- id (rlong)
- name (rstring)
- details.owner.id (rlong)
- details.permissions (dict)
- child_count (rlong)
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param row The Dataset row to marshal @type row L{list}
Marshal datasets for a given user.
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param experimenter_id The Experimenter (user) ID to marshal Datasets for or None if we are not to filter by a specific user. @type experimenter_id L{long}
Given a Plate row (list) marshals it into a dictionary. Order and type of columns in row is:
- id (rlong)
- name (rstring)
- details.owner.id (rlong)
- details.permissions (dict)
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param row The Plate row to marshal @type row L{list}
Given a PlateAcquisition row (list) marshals it into a dictionary. Order and type of columns in row is:
- id (rlong)
- name (rstring)
- details.owner.id (rlong)
- details.permissions (dict)
- startTime (rtime)
- endTime (rtime)
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param row The PlateAcquisition row to marshal @type row L{list}
Marshal plates for a given user.
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param experimenter_id The Experimenter (user) ID to marshal Plates for or None if we are not to filter by a specific user. @type experimenter_id L{long}
Marshals projects and contained datasets for a given user.
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param experimenter_id The Experimenter (user) ID to marshal Projects for or None if we are not to filter by a specific user. @type experimenter_id L{long}
Marshals screens and contained plates and aquisitions for a given user.
@param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway} @param experimenter_id The Experimenter (user) ID to marshal Screens for or None if we are not to filter by a specific user. @type experimenter_id L{long}
Parse numeric permissions into a string of space separated CSS classes.
@param permissions Permissions to parse @type permissions L{omero.rtypes.rmap} @param ownerid Owner Id for the object having Permissions @type ownerId Integer @param conn OMERO gateway. @type conn L{omero.gateway.BlitzGateway}
A view functions is simply a Python function that takes a Web request and returns a Web response. This response can be the HTML contents of a Web page, or a redirect, or the 404 and 500 error, or an XML document, or an image... or anything.
This refreshes callback handles (delete, scripts, chgrp etc) and provides html to update Activities window & Progressbar. The returned html contains details for ALL callbacks in web session, regardless of their status. We also add counts of jobs, failures and ‘in progress’ to update status bar.
If the above ‘action’ == ‘clean’ then we clear jobs from request.session[‘callback’] either a single job (if ‘jobKey’ is specified in POST) or all jobs (apart from those in progress)
Handle adding Comments to one or more objects Unbound instance of Comment form not available. If the form has been submitted, a bound instance of the form is created using request.POST
On ‘POST’, This handles attaching an existing file-annotation(s) and/or upload of a new file to one or more objects Otherwise it generates the form for choosing file-annotations & local files.
Handle adding Map Annotations to one or more objects POST data “mapAnnotation” should be list of [‘key’:’value’] pairs.
Handle adding Rating to one or more objects
This handles creation AND submission of Tags form, adding new AND/OR existing tags to one or more objects
Returns the experimenter’s photo
This page gives a form for batch annotation. Local File form and Comment form are loaded. Other forms are loaded via AJAX
Simply changes the request.session[‘active_group’] which is then used by the @login_required decorator to configure conn for any group-based queries. Finally this redirects to the ‘url’.
Moves data to a new group, using the chgrp queue. Handles submission of chgrp form: all data in POST. Adds the callback handle to the request.session[‘callback’][‘jobId’]
Returns the file annotation as an http response for download
Downloads the ‘Original Metadata’ as a text file
Page displays a simple “Preparing download...” message and redirects to the ‘url’. We construct the url and query string from request: ‘url’ and ‘ids’.
Edit and save channel names
Viewing this page doesn’t perform any action. All we do here is assemble various data for display. Last imports, tag cloud etc are retrived via separate AJAX calls.
Show a UI for running figure scripts
Check whether Images / Datasets etc contain partial Multi-image filesets. Used by chgrp or delete dialogs to test whether we can perform this ‘action’.
Used by forms to indicate the currently selected objects prepared above
This provides a url to browse to the specified omero.model.ObjectI P/D/I, S/P, FileAnnotation etc. used to display results from the scripting service E.g webclient/userdata/?path=image-12601 If the object is a file annotation, try to browse to the parent P/D/I
Prepare objects for use in the annotation forms. These objects are required by the form superclass to populate hidden fields, so we know what we’re annotating on submission
Returns the specified original file as an http response. Used for displaying text or png/jpeg etc files in browser
Loads html content of the Groups/Users drop-down menu on main webclient pages. Url should be supplied in request, as target for redirect after switching group.
Converts OMERO image into mrc.map file (using tiltpicker utils) and returns the file
Delegates to webgateway, using share connection if appropriate
Gets the most recent imports - Used in an AJAX call by home page.
Gets the most recent ‘shares’ and ‘share’ comments. Used by the homepage via AJAX call
Gets the most used Tags. Used by the homepage via AJAX call
Keeps the OMERO session alive by pinging the server
List the available scripts - Just officical scripts for now
Loads the calendar which is displayed in the left panel of the history page. Shows current month by default. Filter by experimenter
Get the potential groups we can move selected data to. These will be groups that the owner(s) of selected objects is a member of. Objects are specified by query string like: ?Image=1,2&Dataset=3 If no selected objects are specified, simply list the groups that the current user is a member of. Groups list will exclude the ‘current’ group context.
Loads a tree for user to pick target Project, Dataset or Screen
This loads data for the tree, via AJAX calls. The template is specified by query string. E.g. icon, table, tree. By default this loads Projects and Datasets. E.g. /load_data?view=tree provides data for the tree as <li>.
Loads data for the tag tree and center panel. Either get the P/D/I etc under tags, or the images etc under a tagged Dataset or Project. @param o_type ‘tag’ or ‘project’, ‘dataset’.
The data for a particular date that is loaded into the center panel
The acquisition tab of the right-hand panel. Only loaded for images. TODO: urls regex should make sure that c_type is only ‘image’ OR ‘well’
This page is the right-hand panel ‘general metadata’, first tab only. Shown for Projects, Datasets, Images, Screens, Plates, Wells, Tags etc. The data and annotations are loaded by the manager. Display of appropriate data is handled by the template.
This loads the ancestors of the specified object and displays them in a static tree. Used by an AJAX call from the metadata_general panel.
This is the image ‘Preview’ tab for the right-hand panel. Currently this doesn’t do much except launch the view-port plugin using the image Id (and share Id if necessary)
Loads data for the tree in the ‘public’ main page.
Handles AJAX calls to search
This view handles most of the top-level pages, as specified by ‘menu’ E.g. userdata, usertags, history, search etc. Query string ‘path’ that specifies an object to display in the data tree is parsed. We also prepare the list of users in the current group, for the switch-user form. Change-group form is also prepared.
Webclient Login - Also can be used by other Apps to log in to OMERO. Uses the ‘server’ id from request to lookup the server-id (index), host and port from settings. E.g. “localhost”, 4064. Stores these details, along with username, password etc in the request.session. Resets other data parameters in the request.session. Tries to get connection to OMERO and if this works, then we are redirected to the ‘index’ page or url specified in REQUEST. If we can’t connect, the login page is returned with appropriate error messages.
Logout of the session and redirects to the homepage (will redirect to login first)
Handles many different actions on various objects.
Query to see if we have an OME-TIFF attached to the image (assume only 1, since Batch Image Export will delete old ones)
Uses the scripting service (Batch Image Export script) to generate OME-TIFF for an image and attach this as a file annotation to the image. Script will show up in the ‘Activities’ for users to monitor and download result etc.
Opens the Open Astex Viewer applet, to display volume masks in a couple of formats: - mrc.map files that are attached to images. obj_type = ‘file’ - Convert OMERO image to mrc on the fly. obj_type = ‘image_8bit’ or
- ‘image’
- In this case, we may use ‘scipy’ to scale the image volume.
Starts running a script, adding details to the request.session so that it shows up in the webclient Activities panel and results are available there etc.
Runs a script using values in a POST
Generates an html form for the parameters of a defined script.
Simply changes the request.session[‘active_group’] which is then used by the @login_required decorator to configure conn for any group-based queries.
Update a callback handle with key/value pairs
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._DatasetWrapper
omero_model_DatasetI class wrapper overwrite omero.gateway.DatasetWrapper and extends OmeroWebObjectWrapper.
Bases: omero.gateway.BlitzObjectWrapper
omero_model_EventLogI class wrapper extends omero.gateway.BlitzObjectWrapper.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._ExperimenterGroupWrapper
omero_model_ExperimenterGroupI class wrapper overwrite omero.gateway.ExperimenterGroupWrapper and extend OmeroWebObjectWrapper.
Returns True if current user is Owner of this group
Returns lists of ‘leaders’ and ‘members’ of the specified group (default is current group) as a dict with those keys.
@rtype: dict
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._ExperimenterWrapper
omero_model_ExperimenterI class wrapper overwrite omero.gateway.ExperimenterWrapper and extend OmeroWebObjectWrapper.
Return DN of the specific experimenter if uses LDAP authentication (has set dn on password table) or None. @param eid: experimenter ID @type eid: L{Long} @return: Distinguished Name @rtype: String
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._ImageWrapper
omero_model_ImageI class wrapper overwrite omero.gateway.ImageWrapper and extends OmeroWebObjectWrapper.
This override standard omero.gateway.ImageWrapper.getChannels and catch exceptions.
Returns a list of the ‘sibling’ images (including this one) that belong to this image’s Fileset. Sorted by name. If Image has no Fileset, return an empty list.
@rtype: List of {ImageWrapper}
Returns the command used to do import transfer for this image, E.g. ‘ln’, or empty string if not in-place imported.
We use the pixelSizeX to find the appropriate units. By default, we get the actual size in Microns, then use the lengthunit filter to pick the most suitable size (same logic is used for doing the length conversions). However, if unit can’t be converted, then we just return the current unit’s symbol.
Helper for calling getPixelSizeX(units=”MICROMETER”) in templates
Helper for calling getPixelSizeX(units=”MICROMETER”) in templates
Helper for calling getPixelSizeX(units=”MICROMETER”) in templates
This determines whether we want to show the paths of Original Imported Files.
Bases: omero.gateway._BlitzGateway
Every time session is created default group becomes active group and is loaded with the security for the current user and thread. Public data has to be created in the context of the group where user, who would like to look at these data, is a member of. Public data can be only visible by the member of group and owners.
@param gid: New active group ID @type gid: Long
@return: Boolean
Change the password for the current user by passing the old password.
@type password String @param old_password Old password @type old_password String @return None or error message if password could not be
changed
@rtype String
Change the password for the a given user.
@param omeName Experimetner omename @type omeName String @param password Must pass validation in the security sub-system. @type password String @param my_password Must pass validation in the security sub-system. @type my_password String
Counts given data objects by the given period of time controlled by the security system.
@param start Starting data @type start Long @param end Finishing data @type end Long @param otype Data type: Project, Dataset, Image @type otype String @return: Counter @rtype: Long
Creates new Project, Dataset or Screen and returns ID
Creates a Dataset and adds images if img_ids is specified. Returns the new Dataset ID.
Create and return a new user in the given groups with password. @param omeName A new username. @type omeName String @param firstName A new first name. @type firstName String @param lastName A new last name. @type lastName String @param email A new email. @type email String @param isAdmin An Admin permission. @type isAdmin Boolean @param isActive Active user (user can log in). @type isActive Boolean @param defaultGroup Instance of ExperimenterGroup selected as a first
active group.
@type defaultGroup ExperimenterGroupI @param otherGroups List of ExperimenterGroup instances. Can be empty. @type otherGroups L{ExperimenterGroupI} @param password Must pass validation in the security sub-system. @type password String @param middleName A middle name. @type middleName String @param institution An institution. @type institution String @return ID of the newly created Experimenter Not null. @rtype Long
Create and return a new group with the given owners.
@param group A new ExperimenterGroup instance. @type group ExperimenterGroupI @param owners List of Experimenter instances. Can be empty. @type owners L{ExperimenterI} @param permissions Permissions instances. @type permissions L{PermissionsI} @return ID of the newly created ExperimenterGroup Not
null.
@rtype Long
Creates new Project and returns ID
Creates new Screen and returns ID
Crop File annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO) linked to the given user ID. If user id not set, owned by the current user. New dimensions are defined by squer positions box = (x1,y1,x2,y2)
@param box tuple of new square positions @type box Tuple @param oid experimenter ID @type oid Long
Retrieves Tag by given Name and description
@param name name of tag @type name String @param desc description of tag @type desc String @return: TagAnnotation @rtype: AnnotationWrapper
Get the email addresses for all share guests.
@param share_id: share ID @type share_id: Long @return: List of e-mail addresses @rtype: List of Strings
Get all {@link Experimenter users} who are a member of the share.
@param share_id: share ID @type share_id: Long @return: Members of share @rtype: L{ExperimenterWrapper} generator
Get a single set containing the login names of the users as well email addresses for guests.
@param share_id: share ID @type share_id: Long @return: List of usernames and e-mail addresses @rtype: List of Strings
Counts the number of members in a collection for a given object.
@type parent String @param child Name of the property on that class, omitting
getters and setters.
@type child String @param ids Set of Longs, the ids of the objects to test @type ids L{Long} @return A map from id integer to count integer @rtype L{(Long, Long)}
Returns a map from share id to comment count.
@param share_ids: List of IDs @type share_ids: List of Longs @return: Dict of shareId: comment-count @rtype: Dict of long: long
Looks up all comments which belong to the share, wrapped in object wrapper
@param share_id: share ID @type share_id: Long @return: Share comments @rtype: L{AnnotationWrapper} generator
Looks up all items belonging to the share, wrapped in object wrapper
@param share_id: share ID @type share_id: Long @return: Share contents @rtype: L{omero.gateway.BlitzObjectWrapper} generator
Retrieve given data objects by the given period of time controlled by the security system.
@param start Starting data @type start Long @param end Finishing data @type end Long @param otype Data type: Project, Dataset, Image @type otype String @return: Map of project, dataset and image lists @rtype: Map
Retrieves a configuration value “omero.mail.config” from the backend store.
@return: String
Retrieve event log objects by the given period of time controlled by the security system.
@param start Starting data @type start Long @param end Finishing data @type end Long @return: List of event logs @rtype: List
If file annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO) is not linked to experimenter this method generate default picture of the person.
@return Data from the image. @rtype String
Get File annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO) linked to the given user ID. If user id not set, owned by the current user.
@param oid experimenter ID @type oid Long @return Data from the image. @rtype String
Get size of File annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO) linked to the given user ID. If user id not set, owned by the current user.
@param oid experimenter ID @type oid Long @return Tuple including dimention and size of the file @rtype Tuple
Return all experimenters apart from current user.
@return: Generator yielding experimetners list @rtype: L{ExperimenterWrapper} generator
Get file annotation format for the given value.
@return Omero File format @rtype String
Return DN of the specific experimenter if uses LDAP authentication (has set dn on password table) or None.
@param eid: experimenter ID @type eid: L{Long} @return: Distinguished Name @rtype: String
Returns a map from share id to the count of total members (including the owner). This is represented by ome.model.meta.ShareMember links.
@param share_ids: List of IDs @type share_ids: List of Longs @return: Dict of shareId: member-count @rtype: Dict of long: long
Gets all shares where current user is a member.
@return: Shares that user is a member of @rtype: L{ShareWrapper} generator
Gets all owned shares for the current user.
@return: Shares that user owns @rtype: L{ShareWrapper} generator
Retrieves a configuration value “omero.version” from the backend store.
@return: String
Gets share for the given share id.
@param oid: Share ID. @type oid: Long @return: ShareWrapper or None @rtype: L{ShareWrapper}
Returns active share id .
@return: Share ID @rtype: Long
Retrieves a configuration value “omero.upgrades.url” from the backend store.
@return: String
Check if File annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO) is linked to the given user ID. If user id not set, owned by the current user.
@param oid experimenter ID @type oid Long @return True or False @rtype Boolean
Checks if any of the experimenter was created before
@return: Boolean
List Images in the given Dataset. Optinally filter by experimenter ‘eid’
@param eid: experimenter id @type eid: Long @param page: page number @type page: Long @return: Generator yielding Images @rtype: L{ImageWrapper} generator
Retrieve most recent imported images controlled by the security system.
@return: Generator yielding Images @rtype: L{ImageWrapper} generator
Lists all IDs of experimenters who are authenticated by LDAP (has set dn on password table).
@return: List of experimetner IDs @rtype: L{Dict of String: Long}
Retrieve most recent comment annotations controlled by the security system.
@return: Generator yielding BlitzObjectWrapper @rtype: L{BlitzObjectWrapper} generator
Retrieve most recent share comments controlled by the security system.
@return: Generator yielding SessionAnnotationLink @rtype: L{SessionCommentWrapper} generator
Retrieve most recent shares controlled by the security system.
@return: Generator yielding SessionAnnotationLink @rtype: L{ShareWrapper} generator
Retrieve most recent tag annotations controlled by the security system.
@return: Generator yielding BlitzObjectWrapper @rtype: L{BlitzObjectWrapper} generator
Returns a two-element tuple: * A list of tags, where each tag is a list with the following
elements: 0: id 1: description 2: text 3: owner id 4: list of child tag ids (possibly empty), or 0 if this is not a tag
set
For each Fileset, make sure all the Images are in the same Dataset as each other. We choose a ‘target’ Dataset that already has one of the Fileset Images in it, and is in the dsIds list. This method is used when preparing to chgrp the specified datasets
Provide method for directly updating a file object and return binary. Assumes that the checksum algorithm used for file integrity verification is SHA-1.
@param binary Binary. Not null. @type binary String @param oFile_id File Id in order to manage the state of the
service. Not null.
@type oFile_id Long @return Shallow copy of file.
Provide method for directly updating object graphs and return ID. Act recursively on the entire object graph, replacing placeholders and details where necessary, and then “merging” the final graph. This means that the objects that are passed into methods are copied over to new instances which are then returned. The original objects should be discarded.
@type obj ObjectI @return ID of saved object @rtype Long
Provide method for directly updating object graphs and return it. Act recursively on the entire object graph, replacing placeholders and details where necessary, and then “merging” the final graph. This means that the objects that are passed into methods are copied over to new instances which are then returned. The original objects should be discarded.
@type obj ObjectI @return Saved object @rtype ObjectI
Provide method for directly updating list of object graphs. Act recursively on the entire object graph, replacing placeholders and details where necessary, and then “merging” the final graph. This means that the objects that are passed into methods are copied over to new instances which are then returned. The original objects should be discarded.
@type obj L{ObjectI}
Provide method for directly updating object graphs. Act recursively on the entire object graph, replacing placeholders and details where necessary, and then “merging” the final graph. This means that the objects that are passed into methods are copied over to new instances which are then returned. The original objects should be discarded.
@type obj ObjectI
Sets the default group for the specified experimenter, or current user if not specified.
Change members of the group. Returns a list of existing group members that could not be removed from the group because it is their only group.
@param group An existing ExperimenterGroup instance. @type group ExperimenterGroupI @param new_members List of new new Experimenter Ids. @type new_members L{Long} @return List of Experimenters not removed from group @rtype List of L{ExperimenterWrapper}
Change members of the group.
@param group An existing ExperimenterGroup instance. @type group ExperimenterGroupI @param new_members List of new new Experimenter Ids. @type new_members L{Long}
Update an existing user including groups user is a member of. Password cannot be changed by calling that method. @param experimenter An existing Experimenter instance. @type experimenter ExperimenterWrapper @param omeName A new username. @type omeName String @param firstName A new first name. @type firstName String @param lastName A new last name. @type lastName String @param email A new email. @type email String @param isAdmin An Admin permission. @type isAdmin Boolean @param isActive Active user (user can log in). @type isActive Boolean @param defaultGroup Instance of ExperimenterGroup selected as a first
active group.
@type defaultGroup ExperimenterGroupI @param otherGroups List of ExperimenterGroup instances. Can be empty. @type otherGroups L{ExperimenterGroupI} @param middleName A middle name. @type middleName String @param institution An institution. @type institution String
Update an existing user including groups user is a member of. Password cannot be changed by calling that method.
@param group A new ExperimenterGroup instance. @type group ExperimenterGroupI @param name A new group name. @type name String @param permissions Permissions instances. @type permissions L{PermissionsI} @param owners List of Experimenter instances. Can be empty. @type owners L{ExperimenterI} @param description A description. @type description String
Allows a user to update his/her own information and set the default group for a given user. @param experimenter A data transfer object. Only the fields:
firstName, middleName, lastName, email, and institution are checked. Not null.
@type experimenter ExperimenterWrapper @param firstName A new first name. @type firstName String @param lastName A new last name. @type lastName String @param email A new email. @type email String @param defaultGroup Instance of ExperimenterGroup selected as a
first active group.
@type defaultGroup ExperimenterGroupI @param middleName A middle name. @type middleName String @param institution An institution. @type institution String
Allow to change the permission of the group.
@type group BlitzObjectWrapper @param perm The permissions value for this entity. Not null. @type perm PermissionsI
Uploads a photo for the user which will be displayed on his/her profile. This photo will be saved as an OriginalFile object with the given format, and attached to the user’s Experimenter object via an File Annotation with the namespace: “openmicroscopy.org/omero/experimenter/photo” (NSEXPERIMENTERPHOTO). If such an OriginalFile instance already exists, it will be overwritten. If more than one photo is present, the oldest version will be modified (i.e. the highest updateEvent id).
Note: as outlined in ticket:1794, this photo will be placed in the “user” group and therefore will be visible to everyone on the system.
@param filename name which will be used. @type filename String @param format Format.value string. ‘image/jpeg’ and ‘image/png’
are common values.
@type format String @param data Data from the image. This will be written to disk. @type data String
@rtype Long
Bases: object
Count on annotations linked to the object and set the value on the custom fiels ‘annotation_counter’.
@return Counter
Returns a string that can be used as classes on an html element to indicate the permissions flags of the object. E.g. “canEdit canLink” Flags/classes are canEdit, canAnnotate, canLink, canDelete
Add a rating (long) annotation to the object, or update an existing rating. If rating is zero, we remove any existing rating annotation.
Warp name of the object if names is longer then 30 characters.
@return Warped string.
Bases: omero.gateway.OmeroGatewaySafeCallWrapper
Function or method wrapper that handles L{Ice.ObjectNotExistException} by re-creating the server side proxy.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._PlateAcquisitionWrapper
omero_model_PlateI class wrapper overwrite omero.gateway.PlateWrapper and extends OmeroWebObjectWrapper.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._PlateWrapper
omero_model_PlateI class wrapper overwrite omero.gateway.PlateWrapper and extends OmeroWebObjectWrapper.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._ProjectWrapper
omero_model_ProjectI class wrapper overwrite omero.gateway.ProjectWrapper and extend OmeroWebObjectWrapper.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._ScreenWrapper
omero_model_ScreenI class wrapper overwrite omero.gateway.ScreenWrapper and extends OmeroWebObjectWrapper.
Bases: omero.gateway.BlitzObjectWrapper
omero_model_ShareI class wrapper extends BlitzObjectWrapper.
Gets the end date for the share
@return: End Date-time @rtype: datetime object
The owner of this share
@return: Owner @rtype: L{ExperimenterWrapper}
Gets the start date of the share
@return: Start Date-time @rtype: datetime object
Returns True if we are past the end date of the share
@return: True if share expired @rtype: Boolean
Returns True if share is owned by the current user
@return: True if owned @rtype: Boolean
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway.TagAnnotationWrapper
omero_model_TagAnnotationI class wrapper overwrite omero.gateway.TagAnnotationWrapper and extends OmeroWebObjectWrapper.
Bases: omeroweb.webclient.webclient_gateway.OmeroWebObjectWrapper, omero.gateway._WellWrapper
omero_model_ImageI class wrapper overwrite omero.gateway.ImageWrapper and extends OmeroWebObjectWrapper.
Added as workaround to the changes made in #3006.
Formats a fraction as a percentage for display