Trees | Indices | Help |
|
---|
|
|
|||
appmedia = r'^appmedia/(?P<path>.*)$', 'django.views.static.se path to media files for webgateway |
|||
render_image = r'^render_image/(?P<iid>[^/]+)/(?P<z>[^/]+)/(?P Returns a jpeg of the OMERO image. |
|||
render_image_region = r'^render_image_region/(?P<iid>[^/]+)/(? Returns a jpeg of the OMERO image, rendering only a region specified in query string as region=x,y,width,height. |
|||
render_split_channel = r'^render_split_channel/(?P<iid>[^/]+)/ Returns a jpeg of OMERO Image with channels split into different panes in a grid. |
|||
render_row_plot = r'^render_row_plot/(?P<iid>[^/]+)/(?P<z>[^/] Returns a gif graph of pixel values for a row of an image plane. |
|||
render_col_plot = r'^render_col_plot/(?P<iid>[^/]+)/(?P<z>[^/] Returns a gif graph of pixel values for a column of an image plane. |
|||
render_thumbnail = r'^render_thumbnail/(?P<iid>[^/]+)/(?:(?P<w Returns a thumbnail jpeg of the OMERO Image, optionally scaled to max-width and max-height. |
|||
render_birds_eye_view = r'^render_birds_eye_view/(?P<iid>[^/]+ Returns a bird's eye view JPEG of the OMERO Image. |
|||
render_ome_tiff = r'^render_ome_tiff/(?P<ctx>[^/]+)/(?P<cid>[^ Generates an OME-TIFF of an Image (or zip for multiple OME-TIFFs) and returns the file or redirects to a temp file location. |
|||
render_movie = r'^render_movie/(?P<iid>[^/]+)/(?P<axis>[zt])/( Generates a movie file from the image, spanning Z or T frames. |
|||
test = r'^test/$', 'webgateway.views.test' Test method: returns a blank template of the image-viewer |
|||
listProjects_json = r'^proj/list/$', 'webgateway.views.listPro json method: returning list of all projects available to current user. |
|||
projectDetail_json = r'^proj/(?P<pid>[^/]+)/detail/$', 'webgat json method: returns details of specified Project. |
|||
listDatasets_json = r'^proj/(?P<pid>[^/]+)/children/$', 'webga json method: returns list of Datasets belonging to specified Project. |
|||
datasetDetail_json = r'^dataset/(?P<did>[^/]+)/detail/$', 'web json method: returns details of specified Dataset. |
|||
webgateway_listimages_json = url(r'^dataset/(?P<did>[^/]+)/chi json method: returns list of Images belonging to specified Dataset. |
|||
webgateway_listwellimages_json = url(r'^well/(?P<did>[^/]+)/ch json method: returns list of Images belonging to specified Well. |
|||
webgateway_plategrid_json = url(r'^plate/(?P<pid>[^/]+)/(?:(?P
|
|||
imageData_json = r'^imgData/(?P<iid>[^/]+)/(?:(?P<key>[^/]+)/) json method: returns details of specified Image. |
|||
wellData_json = r'^wellData/(?P<wid>[^/]+)/$', 'webgateway.vie json method: returns details of specified Well. |
|||
webgateway_search_json = url(r'^search/$', 'webgateway.views.s json method: returns search results. |
|||
get_rois_json = url(r'^get_rois_json/(?P<imageId>[0-9]+)$', 'w gets all the ROIs for an Image as json. |
|||
full_viewer = r'^img_detail/(?P<iid>[0-9]+)/$', "webgateway.vi Returns html page displaying full image viewer and image details, rendering settings etc. |
|||
save_image_rdef_json = r'^saveImgRDef/(?P<iid>[^/]+)/$', 'webg Saves rendering definition (from request parameters) on the image. |
|||
reset_image_rdef_json = r'^resetImgRDef/(?P<iid>[^/]+)/$', 'we Removes user's rendering settings on an image, reverting to settings created on import. |
|||
list_compatible_imgs_json = r'^compatImgRDef/(?P<iid>[^/]+)/$' json method: returns list of IDs for images that have channels compatible with the specified image, such that rendering settings can be copied from the image to those returned. |
|||
copy_image_rdef_json = r'^copyImgRDef/$', 'webgateway.views.co Copy the rendering settings from one image to a list of images, specified in request by 'fromid' and list of 'toids'. |
|||
webgateway_su = url(r'^su/(?P<user>[^/]+)/$', 'webgateway.view Admin method to switch to the specified user, identified by username: <user> Returns 'true' if switch went OK. |
|||
urlpatterns = patterns('', appmedia, render_image, render_imag
|
|
appmediapath to media files for webgateway
|
render_imageReturns a jpeg of the OMERO image. See views.render_image. Rendering settings can be specified in the request parameters. See views.getImgDetailsFromReq for details. Params in render_image/<iid>/<z>/<t>/ are:
|
render_image_regionReturns a jpeg of the OMERO image, rendering only a region specified in query string as region=x,y,width,height. E.g. region=0,512,256,256 See views.render_image_region. Rendering settings can be specified in the request parameters. Params in render_image/<iid>/<z>/<t>/ are:
|
render_split_channelReturns a jpeg of OMERO Image with channels split into different panes in a grid. See views.render_split_channel. Rendering settings can be specified in the request parameters (as above). Params in render_split_channel/<iid>/<z>/<t> are:
|
render_row_plotReturns a gif graph of pixel values for a row of an image plane. See views.render_row_plot. Channels can be turned on/off using request. E.g. c=-1,2,-3,-4 Params in render_row_plot/<iid>/<z>/<t>/<y>/<w> are:
|
render_col_plotReturns a gif graph of pixel values for a column of an image plane. See views.render_col_plot. Channels can be turned on/off using request. E.g. c=-1,2,-3,-4 Params in render_col_plot/<iid>/<z>/<t>/<x>/<w> are:
|
render_thumbnailReturns a thumbnail jpeg of the OMERO Image, optionally scaled to max-width and max-height. See views.render_thumbnail. Uses current rendering settings. Params in render_thumbnail/<iid>/<w>/<h> are:
|
render_birds_eye_viewReturns a bird's eye view JPEG of the OMERO Image. See views.render_birds_eye_view. Uses current rendering settings. Params in render_birds_eye_view/<iid>/ are:
|
render_ome_tiffGenerates an OME-TIFF of an Image (or zip for multiple OME-TIFFs) and returns the file or redirects to a temp file location. See views.render_ome_tiff Params in render_ome_tiff/<ctx>/<cid> are:
|
render_movieGenerates a movie file from the image, spanning Z or T frames. See views.render_movie Returns the file or redirects to temp file location. Params in render_movie/<iid>/<axis>/<pos> are:
|
listProjects_jsonjson method: returning list of all projects available to current user. See views.listProjects_json . List of E.g. {"description": "", "id": 651, "name": "spim"}
|
projectDetail_jsonjson method: returns details of specified Project. See views.projectDetail_json. Returns E.g {"description": "", "type": "Project", "id": 651, "name": "spim"}
|
listDatasets_jsonjson method: returns list of Datasets belonging to specified Project. See views.listDatasets_json. Returns E.g list of {"child_count": 4, "description": "", "type": "Dataset", "id": 901, "name": "example"}
|
datasetDetail_jsonjson method: returns details of specified Dataset. See views.datasetDetail_json. Returns E.g {"description": "", "type": "Dataset", "id": 901, "name": "example"}
|
webgateway_listimages_jsonjson method: returns list of Images belonging to specified Dataset. See views.listImages_json. Returns E.g list of {"description": "", "author": "Will Moore", "date": 1291325060.0, "thumb_url": "/webgateway/render_thumbnail/4701/", "type": "Image", "id": 4701, "name": "spim.png"}
|
webgateway_listwellimages_jsonjson method: returns list of Images belonging to specified Well. See views.listWellImages_json. Returns E.g list of {"description": "", "author": "Will Moore", "date": 1291325060.0, "thumb_url": "/webgateway/render_thumbnail/4701/", "type": "Image", "id": 4701, "name": "spim.png"}
|
webgateway_plategrid_json
|
imageData_jsonjson method: returns details of specified Image. See views.imageData_json. Returns E.g {"description": "", "type": "Dataset", "id": 901, "name": "example"}
|
wellData_jsonjson method: returns details of specified Well. See views.wellData_json.
|
webgateway_search_jsonjson method: returns search results. All parameters in request. See views.search_json
|
get_rois_jsongets all the ROIs for an Image as json. Image-ID is request: imageId=123 [{'id':123, 'shapes':[{'type':'Rectangle', 'theZ':5, 'theT':0, 'x':250, 'y':100, 'width':10 'height':45} ]
|
full_viewerReturns html page displaying full image viewer and image details, rendering settings etc. See views.full_viewer.
|
save_image_rdef_jsonSaves rendering definition (from request parameters) on the image. See views.save_image_rdef_json. For rendering parameters, see views.getImgDetailsFromReq for details. Returns 'true' if worked OK.
|
reset_image_rdef_jsonRemoves user's rendering settings on an image, reverting to settings created on import. See views.reset_image_rdef_json.
|
list_compatible_imgs_jsonjson method: returns list of IDs for images that have channels compatible with the specified image, such that rendering settings can be copied from the image to those returned. Images are selected from the same project that the specified image is in.
|
copy_image_rdef_jsonCopy the rendering settings from one image to a list of images, specified in request by 'fromid' and list of 'toids'. See views.copy_image_rdef_json
|
webgateway_suAdmin method to switch to the specified user, identified by username: <user> Returns 'true' if switch went OK.
|
urlpatterns
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Oct 18 13:28:33 2011 | http://epydoc.sourceforge.net |