OMERO.web framework =================== .. figure:: /images/OmeroWeb.png :align: center :alt: OmeroWeb infrastructure components OMERO.web is a framework for building web applications for OMERO. It uses `Django `_ to generate HTML pages from data retrieved from the OMERO server. OMERO.web acts as a Python client of the OMERO server using the OMERO API, as well as being a web server itself (see 'infrastructure' info below). It uses Django 'apps' to provide modular web tools, such as the webclient (working with image data) and webadmin (administrator management). This modular framework makes it possible to extend OMERO.web with your own apps. One of the apps, :doc:`/developers/Web/WebGateway`, provides utility methods for accessing data and rendering images, as well as handling the connection to OMERO server. OMERO.web infrastructure ------------------------ OMERO Python API ^^^^^^^^^^^^^^^^ The OMERO.web framework is all based on the OMERO Python API, using the Blitz Gateway (see |OmeroPy|). The OMERO.web framework provides functionality for creating and retrieving connections to OMERO (see example below and :doc:`/developers/Web/WritingViews` for more details) Web gateway ^^^^^^^^^^^ The webgateway is a Django app that provides utility functionality for the other web components. This includes a full image viewer, as well as methods for rendering images etc. You can browse the :pythondoc:`webgateway URLs `, or see the :doc:`/developers/Web/WebGateway` page for more info. Web apps ^^^^^^^^ The OMERO.web framework consists of several Django apps denoted by folders named 'web....'. These include webgateway, as discussed above, as well as released tools (webadmin, webclient) and other apps in development: .. glossary:: webclient Main web client for viewing images, annotating etc. More information available under :ref:`OMERO.web `. webadmin For administration of user and group settings. webgateway A web services interface, providing rendered images and data. See :doc:`/developers/Web/WebGateway`. Additional apps can be easily added to your OMERO.web deployment. One example is the `webtest app `_ that contains several code samples mentioned in the following pages. You will find install instructions on the webtest app page itself. Getting started --------------- The preferred workflow for extending OMERO.web is to create a new Django app. Django apps provide a nice way for you to keep all your code in one place and make it much easier to port your app to new OMERO releases or share it with other users. To get started, see :doc:`/developers/Web/CreateApp`. Further documentation on editing the core OMERO.web code is at :doc:`/developers/Web/EditingOmeroWeb`. If you want to have a quick look at some example code, see below. Quick example - webtest ^^^^^^^^^^^^^^^^^^^^^^^ .. figure:: /images/webtest-dataset.png :align: center :alt: Screen-shot of the webtest/dataset/example This tiny example gives you a feel for how the OMERO.web framework gets data from OMERO and displays it on a web page. You can find this and other examples in the `webtest `_ app. There are 3 parts to each page: url, view and template. For example, this code below is for generating an HTML page of a Dataset (see screen-shot). If you have OMERO.web running, you can view the page under `http://servername.example.org/webtest/dataset/`\ ``. - **url** goes in omeroweb/webtest/urls.py This maps the URL 'webtest/dataset//' to the View function 'dataset', passing it the datasetId. :: url( r'^dataset/(?P[0-9]+)/$', views.dataset ), - **View** function, in omeroweb/webtest/views.py. NB: @login\_required decorator retrieves connection to OMERO as 'conn' passed in args to method. See :doc:`/developers/Web/WritingViews` for more details. :: from omeroweb.webclient.decorators import login_required # handles login (or redirects). Was @isUserConnected before OMERO 4.4 @login_required() def dataset(request, datasetId, conn=None, **kwargs): ds = conn.getObject("Dataset", datasetId) # generate html from template return render(request, 'webtest/dataset.html', {'dataset': ds}) - **Template:** The template web page, in omeroweb/webtest/templates/webtest/dataset.html ::

{{ dataset.getName }}

{% for i in dataset.listChildren %}

{{ i.getName }}
{% endfor %} - Next: Get started by :doc:`/developers/Web/Deployment`....