├── omeroweb ├── __init__.py ├── feedback │ ├── __init__.py │ ├── templatetags │ │ └── __init__.py │ ├── templates │ │ ├── 404.html │ │ ├── base_error.html │ │ ├── error.html │ │ ├── thanks.html │ │ ├── 500-nosubmit.html │ │ └── disabled.html │ ├── static │ │ └── feedback │ │ │ └── css │ │ │ └── layout.css │ └── urls.py ├── webadmin │ ├── __init__.py │ ├── templatetags │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── webadmin │ │ │ ├── image │ │ │ ├── add.png │ │ │ ├── del.png │ │ │ ├── admin.png │ │ │ ├── edit.png │ │ │ ├── guest.png │ │ │ ├── ldap.png │ │ │ ├── active.png │ │ │ ├── editing.png │ │ │ ├── frame_edit.png │ │ │ ├── icon_edit.png │ │ │ └── notactive.png │ │ │ ├── css │ │ │ ├── dusty.css │ │ │ └── chosen.css │ │ │ └── javascript │ │ │ └── jquery.imgareaselect-0.9.10 │ │ │ └── css │ │ │ ├── border-h.gif │ │ │ ├── border-v.gif │ │ │ ├── border-anim-h.gif │ │ │ └── border-anim-v.gif │ ├── templates │ │ └── webadmin │ │ │ ├── password.html │ │ │ └── noemail.html │ └── webadmin_utils.py ├── webclient │ ├── __init__.py │ ├── templatetags │ │ └── __init__.py │ ├── static │ │ └── webclient │ │ │ ├── image │ │ │ ├── f.png │ │ │ ├── x.gif │ │ │ ├── basket.png │ │ │ ├── cut16.png │ │ │ ├── date.png │ │ │ ├── edit.png │ │ │ ├── info12.png │ │ │ ├── info16.png │ │ │ ├── kgpg12.png │ │ │ ├── kgpg16.png │ │ │ ├── lock.png │ │ │ ├── logo.png │ │ │ ├── oav_16.png │ │ │ ├── plus.png │ │ │ ├── rdef16.png │ │ │ ├── rdef32.png │ │ │ ├── reset.png │ │ │ ├── run16.png │ │ │ ├── search.png │ │ │ ├── well16.png │ │ │ ├── apply16.png │ │ │ ├── basket16.png │ │ │ ├── basket32.png │ │ │ ├── cancel12.png │ │ │ ├── cancel16.png │ │ │ ├── folder16.png │ │ │ ├── folder64.png │ │ │ ├── image16.png │ │ │ ├── image_16.png │ │ │ ├── knotes12.png │ │ │ ├── knotes64.png │ │ │ ├── kuser12.gif │ │ │ ├── kuser12.png │ │ │ ├── kuser16.png │ │ │ ├── kview12.png │ │ │ ├── kview16.png │ │ │ ├── locked12.png │ │ │ ├── minus_11.png │ │ │ ├── minus_15.png │ │ │ ├── plus_11.png │ │ │ ├── rating0.png │ │ │ ├── rating1.png │ │ │ ├── rating2.png │ │ │ ├── rating3.png │ │ │ ├── rating4.png │ │ │ ├── rating5.png │ │ │ ├── reload16.png │ │ │ ├── success.png │ │ │ ├── Sidebar_19.png │ │ │ ├── group_red16.png │ │ │ ├── icon_edit.png │ │ │ ├── icon_layout.png │ │ │ ├── icon_redo16.png │ │ │ ├── icon_save.png │ │ │ ├── icon_undo16.png │ │ │ ├── icon_user.png │ │ │ ├── kgpg_key16.png │ │ │ ├── knotesred16.png │ │ │ ├── macFFBgHack.png │ │ │ ├── menu │ │ │ │ ├── help.png │ │ │ │ ├── home.png │ │ │ │ ├── import.png │ │ │ │ ├── menu.png │ │ │ │ ├── person.png │ │ │ │ ├── search.png │ │ │ │ ├── share.png │ │ │ │ ├── contact.png │ │ │ │ ├── history.png │ │ │ │ ├── userdata.png │ │ │ │ └── menu_with_import.png │ │ │ ├── network12.png │ │ │ ├── network16.png │ │ │ ├── personal12.png │ │ │ ├── personal16.png │ │ │ ├── personal32.png │ │ │ ├── reset-grey.png │ │ │ ├── root_user16.png │ │ │ ├── unknown16.png │ │ │ ├── view_icon16.png │ │ │ ├── view_tag16.png │ │ │ ├── view_tree16.png │ │ │ ├── color_line12.png │ │ │ ├── color_line16.png │ │ │ ├── file_locked16.png │ │ │ ├── folder16_old.png │ │ │ ├── folder_html16.png │ │ │ ├── folder_html32.png │ │ │ ├── folder_html64.png │ │ │ ├── group_green16.png │ │ │ ├── help │ │ │ │ └── basket1.gif │ │ │ ├── icon_openwith.png │ │ │ ├── kpresenter12.png │ │ │ ├── kpresenter16.png │ │ │ ├── tab_icon_tag.png │ │ │ ├── table_layout.png │ │ │ ├── window_new16.png │ │ │ ├── wp_protocol16.png │ │ │ ├── wp_protocol32.png │ │ │ ├── wp_protocol64.png │ │ │ ├── color_line12_old.png │ │ │ ├── folder_image16.png │ │ │ ├── folder_image64.png │ │ │ ├── folder_locked16.png │ │ │ ├── folder_locked32.png │ │ │ ├── folder_plate16.png │ │ │ ├── folder_plate32.png │ │ │ ├── folder_plate64.png │ │ │ ├── folder_screen16.png │ │ │ ├── folder_screen32.png │ │ │ ├── folder_screen64.png │ │ │ ├── folder_yellow16.png │ │ │ ├── folder_yellow32.png │ │ │ ├── folder_yellow64.png │ │ │ ├── googiespell │ │ │ │ ├── logo.png │ │ │ │ ├── ok.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── spellc.gif │ │ │ │ ├── indicator.gif │ │ │ │ └── change_lang.gif │ │ │ ├── group_orange16.png │ │ │ ├── icon_arrow_left.png │ │ │ ├── icon_arrow_right.png │ │ │ ├── icon_tag_delete.png │ │ │ ├── icon_tag_remove.png │ │ │ ├── icon_toolbar_add.png │ │ │ ├── icon_toolbar_cut.png │ │ │ ├── icon_user_select.png │ │ │ ├── image_locked16.png │ │ │ ├── loadingAnimation.gif │ │ │ ├── logo_login_web.png │ │ │ ├── message_nodata.png │ │ │ ├── nuvola_apply22.png │ │ │ ├── nuvola_cancel16.png │ │ │ ├── personal16_old.png │ │ │ ├── table_arrow_down.png │ │ │ ├── table_arrow_up.png │ │ │ ├── view_detailed16.png │ │ │ ├── custom_login_logo.png │ │ │ ├── folder_image16_old.png │ │ │ ├── folder_plate16_old.png │ │ │ ├── handle.horizontal.gif │ │ │ ├── icon_basic_copy_16.png │ │ │ ├── icon_basic_cut_16.png │ │ │ ├── icon_basic_delete.png │ │ │ ├── icon_basic_user_16.png │ │ │ ├── icon_scientist_36.png │ │ │ ├── icon_settings_mail.png │ │ │ ├── icon_settings_user.png │ │ │ ├── icon_toolbar_chat.png │ │ │ ├── icon_toolbar_chat2.png │ │ │ ├── icon_toolbar_clean.png │ │ │ ├── icon_toolbar_copy.png │ │ │ ├── icon_toolbar_paste.png │ │ │ ├── icon_toolbar_share.png │ │ │ ├── image_locked16_old.png │ │ │ ├── calendar_arrow_left.png │ │ │ ├── calendar_arrow_right.png │ │ │ ├── comment │ │ │ │ ├── comment_cap.png │ │ │ │ ├── comment_foot.png │ │ │ │ ├── comment_cap_rev.png │ │ │ │ ├── comment_foot_rev.png │ │ │ │ ├── comment_repeater.png │ │ │ │ └── comment_repeater_rev.png │ │ │ ├── dropdown_right_arrow.png │ │ │ ├── eclipse_copy_edit12.png │ │ │ ├── eclipse_copy_edit16.png │ │ │ ├── eclipse_paste_edit12.png │ │ │ ├── eclipse_paste_edit16.png │ │ │ ├── folder_html_locked16.png │ │ │ ├── folder_image_locked16.png │ │ │ ├── folder_plate_locked16.png │ │ │ ├── folder_yellow16_old.png │ │ │ ├── group_dropdown_arrow.png │ │ │ ├── icon_basic_basket_16.png │ │ │ ├── icon_basic_delete_16.png │ │ │ ├── icon_basic_paste_16.png │ │ │ ├── icon_basic_remove_16.png │ │ │ ├── icon_openwith_toolbar.png │ │ │ ├── icon_settings_groups.png │ │ │ ├── icon_toolbar_basket.png │ │ │ ├── icon_toolbar_clean2.png │ │ │ ├── icon_toolbar_delete.png │ │ │ ├── icon_toolbar_refresh.png │ │ │ ├── icon_toolbar_refresh2.png │ │ │ ├── icon_toolbar_remove.png │ │ │ ├── icon_toolbar_remove2.png │ │ │ ├── icon_toolbar_share2.png │ │ │ ├── image_locked_slash16.png │ │ │ ├── left_sidebar_icon_map.png │ │ │ ├── left_sidebar_icon_tag.png │ │ │ ├── nuvola_script-run16.png │ │ │ ├── select_dropdown_arrow.png │ │ │ ├── table_arrow_up_down.png │ │ │ ├── tango_text-x-python16.png │ │ │ ├── wp_protocol_locked16.png │ │ │ ├── wp_protocol_locked32.png │ │ │ ├── wp_protocol_locked64.png │ │ │ ├── folder_screen_locked16.png │ │ │ ├── icon_basic_newwindow_16.png │ │ │ ├── icon_scientist_group_36.png │ │ │ ├── image_deleted_thumbnail.png │ │ │ ├── left_sidebar_icon_tags.png │ │ │ ├── nuvola_script-run16_old.png │ │ │ ├── OME-Interface-Playground.png │ │ │ ├── XPButtonUploadText_61x22.png │ │ │ ├── drag_handle_arrows_up-down.png │ │ │ ├── icon_settings_drivespace.png │ │ │ ├── left_sidebar_icon_public.png │ │ │ ├── nuvola_download_manager16.png │ │ │ └── scroller │ │ │ │ ├── productbrowser_scroller_20080115.png │ │ │ │ ├── productbrowser_background_20070622.jpg │ │ │ │ └── productbrowser_scrollbar_20070622.png │ │ │ └── javascript │ │ │ ├── jquery.jstree.conditionalselect_plugin.js │ │ │ ├── jquery.jstree.childcount_plugin.js │ │ │ └── ie8_pngfix │ │ │ └── supersleight-min.js │ ├── templates │ │ └── webclient │ │ │ ├── scripts │ │ │ ├── no_processor.html │ │ │ ├── list_scripts.html │ │ │ └── original_file_text.html │ │ │ ├── annotations │ │ │ ├── ratings_underscore.html │ │ │ ├── includes │ │ │ │ ├── metadata_general_other.html │ │ │ │ ├── metadata_general_map.html │ │ │ │ ├── metadata_general_table.html │ │ │ │ └── figure_scripts_menu.html │ │ │ ├── custom_ann_tooltip.html │ │ │ ├── customanns_underscore.html │ │ │ └── comments_underscore.html │ │ │ ├── base │ │ │ └── includes │ │ │ │ ├── logout.html │ │ │ │ ├── logo.html │ │ │ │ ├── search_field.html │ │ │ │ ├── script_launch.html │ │ │ │ └── group_user_dropdown.html │ │ │ └── ajax_form │ │ │ └── container_form_ajax.html │ └── controller │ │ ├── help.py │ │ └── impexp.py ├── webredirect │ ├── __init__.py │ └── urls.py ├── webgateway │ ├── templatetags │ │ └── __init__.py │ ├── static │ │ ├── webgateway │ │ │ ├── img │ │ │ │ ├── x.gif │ │ │ │ ├── 1_1.gif │ │ │ │ ├── bg2.png │ │ │ │ ├── fs.gif │ │ │ │ ├── ome.ico │ │ │ │ ├── tag.png │ │ │ │ ├── broken.gif │ │ │ │ ├── close.gif │ │ │ │ ├── close.png │ │ │ │ ├── fail.png │ │ │ │ ├── failed.png │ │ │ │ ├── help16.png │ │ │ │ ├── line16.png │ │ │ │ ├── logo2.png │ │ │ │ ├── logout.png │ │ │ │ ├── mask16.png │ │ │ │ ├── resize.gif │ │ │ │ ├── search.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── t_axis.gif │ │ │ │ ├── text16.png │ │ │ │ ├── z_axis.gif │ │ │ │ ├── arrow_up.gif │ │ │ │ ├── arrow_up.png │ │ │ │ ├── failerd.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── folder16.png │ │ │ │ ├── folder32.png │ │ │ │ ├── icon_add.png │ │ │ │ ├── image128.png │ │ │ │ ├── knotes16.png │ │ │ │ ├── luts_10.png │ │ │ │ ├── point16.png │ │ │ │ ├── question.png │ │ │ │ ├── settings.png │ │ │ │ ├── spinner.gif │ │ │ │ ├── success.png │ │ │ │ ├── tab_tag.png │ │ │ │ ├── up_down.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── arrow_down.gif │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.gif │ │ │ │ ├── arrow_right.gif │ │ │ │ ├── blank_tile.png │ │ │ │ ├── blue_square.gif │ │ │ │ ├── ellipse16.png │ │ │ │ ├── exclamation.gif │ │ │ │ ├── folder_open.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── header_bg2.png │ │ │ │ ├── icon_basket.png │ │ │ │ ├── icon_edit.png │ │ │ │ ├── icon_folder.png │ │ │ │ ├── icon_help.png │ │ │ │ ├── icon_info.png │ │ │ │ ├── icon_link.png │ │ │ │ ├── icon_logout.png │ │ │ │ ├── icon_script.png │ │ │ │ ├── icon_view.png │ │ │ │ ├── login_ome.png │ │ │ │ ├── logo_login2.png │ │ │ │ ├── mail_send.png │ │ │ │ ├── personal32.png │ │ │ │ ├── polygon16.png │ │ │ │ ├── rectangle16.png │ │ │ │ ├── spinner)old.gif │ │ │ │ ├── spinner_big.gif │ │ │ │ ├── upload_grey.png │ │ │ │ ├── blue_arrow_up.gif │ │ │ │ ├── blue_play_up.gif │ │ │ │ ├── drag_handle_5.png │ │ │ │ ├── folder_closed.png │ │ │ │ ├── header_bg_30.png │ │ │ │ ├── icon_activity.png │ │ │ │ ├── icon_download.png │ │ │ │ ├── icon_filetype.png │ │ │ │ ├── icon_fs_path.png │ │ │ │ ├── icon_settings.png │ │ │ │ ├── ome_text_109.png │ │ │ │ ├── spinner_big2.gif │ │ │ │ ├── t_axis_revert.gif │ │ │ │ ├── tab_icon_tag.png │ │ │ │ ├── z_axis_revert.gif │ │ │ │ ├── ajax-loader-ovl.gif │ │ │ │ ├── arrowDown_grey.png │ │ │ │ ├── arrowRight_grey.png │ │ │ │ ├── basket_light_24.png │ │ │ │ ├── blue_arrow_down.gif │ │ │ │ ├── blue_arrow_left.gif │ │ │ │ ├── blue_arrow_right.gif │ │ │ │ ├── blue_play_down.gif │ │ │ │ ├── blue_play_left.gif │ │ │ │ ├── blue_play_right.gif │ │ │ │ ├── colorpicker_16.png │ │ │ │ ├── datepicker_next.png │ │ │ │ ├── datepicker_prev.png │ │ │ │ ├── dropdown_arrow.png │ │ │ │ ├── folder_image16.png │ │ │ │ ├── folder_image32.png │ │ │ │ ├── folder_yellow16.png │ │ │ │ ├── icon_download2.png │ │ │ │ ├── icon_help_hover.png │ │ │ │ ├── icon_script_dark.png │ │ │ │ ├── icon_view_error.png │ │ │ │ ├── mail_send_hover.png │ │ │ │ ├── message_nodata.png │ │ │ │ ├── navigator_back.png │ │ │ │ ├── table_arrow_down.png │ │ │ │ ├── table_arrow_up.png │ │ │ │ ├── white_arrow_down.gif │ │ │ │ ├── white_arrow_up.gif │ │ │ │ ├── OME_logo_grey_110.png │ │ │ │ ├── activity_light_24.png │ │ │ │ ├── contextbox_arrowup.png │ │ │ │ ├── glencoe_drop_logo.gif │ │ │ │ ├── icon_logout_hover.png │ │ │ │ ├── navigator_forward.png │ │ │ │ ├── tray_collapse_left.png │ │ │ │ ├── bg_thataintgonnafly.jpg │ │ │ │ ├── contextbox_arrowup2.png │ │ │ │ ├── dropdown_left_arrow.png │ │ │ │ ├── dropdown_right_arrow.png │ │ │ │ ├── icon_figure_scripts.png │ │ │ │ ├── icon_settings_hover.png │ │ │ │ ├── nuvola_script-run16.png │ │ │ │ ├── tray_collapse_right.png │ │ │ │ ├── ui-anim_basic_16x16.gif │ │ │ │ ├── nuvola_encrypted_grey16.png │ │ │ │ ├── dropdown_left_arrow_hover.png │ │ │ │ ├── dropdown_right_arrow_hover.png │ │ │ │ ├── emots │ │ │ │ │ ├── tinymce_smiley-cry18.gif │ │ │ │ │ ├── tinymce_smiley-cool18.gif │ │ │ │ │ ├── tinymce_smiley-frown18.gif │ │ │ │ │ ├── tinymce_smiley-kiss18.gif │ │ │ │ │ ├── tinymce_smiley-smile18.gif │ │ │ │ │ ├── tinymce_smiley-wink18.gif │ │ │ │ │ ├── tinymce_smiley-yell18.gif │ │ │ │ │ ├── tinymce_smiley-laughing18.gif │ │ │ │ │ ├── tinymce_smiley-embarassed18.gif │ │ │ │ │ ├── tinymce_smiley-surprised18.gif │ │ │ │ │ ├── tinymce_smiley-tongue-out18.gif │ │ │ │ │ └── tinymce_smiley-undecided18.gif │ │ │ │ ├── iconmonstr-sitemap-6-icon-16.png │ │ │ │ ├── nuvola_encrypted_grey16_old.png │ │ │ │ └── icon_external_link.svg │ │ │ └── css │ │ │ │ ├── ome.iehacks.css │ │ │ │ ├── ome.snippet_header_logo.css │ │ │ │ ├── reset_old.css │ │ │ │ ├── reset.css │ │ │ │ └── ome.colorbtn.css │ │ └── 3rdparty │ │ │ ├── farbtastic-1.2 │ │ │ ├── mask.png │ │ │ ├── marker.png │ │ │ ├── wheel.png │ │ │ └── farbtastic.css │ │ │ ├── panojs-2.0.0 │ │ │ ├── images │ │ │ │ ├── grab.cur │ │ │ │ ├── 32px_11.png │ │ │ │ ├── 64px_11.png │ │ │ │ ├── blank.gif │ │ │ │ ├── 16px_plus.png │ │ │ │ ├── 32px_plus.png │ │ │ │ ├── 32px_show.png │ │ │ │ ├── 64px_plus.png │ │ │ │ ├── 64px_show.png │ │ │ │ ├── grabbing.cur │ │ │ │ ├── progress.gif │ │ │ │ ├── 16px_minus.png │ │ │ │ ├── 32px_minus.png │ │ │ │ ├── 64px_minus.png │ │ │ │ ├── progress_128.gif │ │ │ │ ├── progress_256.gif │ │ │ │ └── progress_512.gif │ │ │ ├── control_scalebar.js │ │ │ └── control_svg.js │ │ │ ├── jquery.tablesorter-2.0.3 │ │ │ ├── bg.gif │ │ │ ├── asc.gif │ │ │ ├── desc.gif │ │ │ ├── asc-big.gif │ │ │ ├── desc-big.gif │ │ │ └── jquery.tablesorter.css │ │ │ ├── jquery.chosen-1.8.7 │ │ │ ├── chosen-sprite.png │ │ │ └── chosen-sprite@2x.png │ │ │ ├── JQuerySpinBtn-1.3a │ │ │ └── img │ │ │ │ └── spinbtn_updn.gif │ │ │ ├── jquery.jstree-3.3.12 │ │ │ └── themes │ │ │ │ └── default │ │ │ │ ├── 32px.png │ │ │ │ ├── 40px.png │ │ │ │ └── throbber.gif │ │ │ ├── jquery-ui-1.13.2 │ │ │ └── css │ │ │ │ └── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery.flot-0.8.3 │ │ │ └── LICENSE.txt │ │ │ ├── jquery.ui.touch-punch-0.2.3.min.js │ │ │ └── d3-7.7.0 │ │ │ └── LICENSE │ ├── __init__.py │ ├── admin.py │ └── templates │ │ └── webgateway │ │ └── base │ │ ├── includes │ │ ├── shortcut_icon.html │ │ ├── css_link_body.html │ │ ├── script_src_popup.html │ │ ├── post_form.html │ │ ├── script_src_jquery.html │ │ └── jquery-ui.html │ │ └── base_frame.html ├── .gitignore ├── version.py ├── custom_context_processor.py ├── api │ └── __init__.py ├── templates │ ├── nginx.conf.template │ └── nginx-location.conf.template ├── httprsp.py └── filesessionstore.py ├── .omeroci └── py-check ├── .gitignore ├── .git-blame-ignore-revs ├── MANIFEST.in ├── .bumpversion.cfg ├── .pre-commit-config.yaml ├── pytest.ini ├── .github └── workflows │ ├── publish_pypi.yml │ ├── install.yml │ ├── tox.yml │ └── codeql-analysis.yml ├── test └── unit │ └── reference_templates │ ├── nginx.conf │ ├── nginx-location.conf │ ├── nginx-location-withoptions.conf │ └── nginx-withoptions.conf └── tox.ini /omeroweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.omeroci/py-check: -------------------------------------------------------------------------------- 1 | echo no-op 2 | -------------------------------------------------------------------------------- /omeroweb/feedback/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webclient/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webredirect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/feedback/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webclient/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/webgateway/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omeroweb/.gitignore: -------------------------------------------------------------------------------- 1 | db.sqlite3 2 | django 3 | *.DS_Store 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | *.egg-info/ 3 | *.pyc 4 | .tox/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Migrate code style to Black 2 | c0c074fbe46ab066b1d6a69fe5b95d9362998dd8 3 | -------------------------------------------------------------------------------- /omeroweb/webadmin/models.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | # Create your models here. 5 | -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/add.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/del.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/f.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/x.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/x.gif -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/admin.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/edit.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/guest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/guest.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/ldap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/ldap.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/1_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/1_1.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/bg2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/fs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/fs.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ome.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ome.ico -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/tag.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/active.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/editing.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/basket.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/cut16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/cut16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/date.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/edit.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/info12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/info12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/info16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/info16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kgpg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kgpg12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kgpg16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kgpg16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/lock.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/logo.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/oav_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/oav_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/plus.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rdef16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rdef16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rdef32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rdef32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/reset.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/run16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/run16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/search.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/well16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/well16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/broken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/broken.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/close.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/close.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/fail.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/failed.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/help16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/help16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/line16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/line16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/logo2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/logout.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/mask16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/mask16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/resize.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/search.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/spacer.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/t_axis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/t_axis.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/text16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/text16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/z_axis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/z_axis.gif -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/frame_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/frame_edit.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/icon_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/icon_edit.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/image/notactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/image/notactive.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/apply16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/apply16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/basket16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/basket16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/basket32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/basket32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/cancel12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/cancel12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/cancel16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/cancel16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/knotes12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/knotes12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/knotes64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/knotes64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kuser12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kuser12.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kuser12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kuser12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kuser16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kuser16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kview12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kview12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kview16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kview16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/locked12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/locked12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/minus_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/minus_11.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/minus_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/minus_15.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/plus_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/plus_11.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating0.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating1.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating3.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating4.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/rating5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/rating5.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/reload16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/reload16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/success.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_up.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_up.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/failerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/failerd.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/favicon.ico -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder32.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_add.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/image128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/image128.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/knotes16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/knotes16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/luts_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/luts_10.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/point16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/point16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/question.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/settings.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/spinner.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/success.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/tab_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/tab_tag.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/up_down.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/Sidebar_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/Sidebar_19.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/group_red16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/group_red16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_edit.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_layout.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_redo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_redo16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_save.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_undo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_undo16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_user.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kgpg_key16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kgpg_key16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/knotesred16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/knotesred16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/macFFBgHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/macFFBgHack.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/help.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/home.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/import.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/menu.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/person.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/search.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/share.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/network12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/network12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/network16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/network16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/personal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/personal12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/personal16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/personal16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/personal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/personal32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/reset-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/reset-grey.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/root_user16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/root_user16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/unknown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/unknown16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/view_icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/view_icon16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/view_tag16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/view_tag16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/view_tree16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/view_tree16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ajax-loader.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_down.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_down.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_left.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrow_right.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blank_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blank_tile.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_square.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ellipse16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ellipse16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/exclamation.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder_open.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/header_bg.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/header_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/header_bg2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_basket.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_edit.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_folder.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_help.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_info.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_link.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_logout.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_script.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_view.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/login_ome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/login_ome.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/logo_login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/logo_login2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/mail_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/mail_send.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/personal32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/personal32.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/polygon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/polygon16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/rectangle16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/rectangle16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/spinner)old.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/spinner)old.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/spinner_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/spinner_big.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/upload_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/upload_grey.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/color_line12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/color_line12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/color_line16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/color_line16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/file_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/file_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder16_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_html16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_html16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_html32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_html32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_html64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_html64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/group_green16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/group_green16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/help/basket1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/help/basket1.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_openwith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_openwith.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kpresenter12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kpresenter12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/kpresenter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/kpresenter16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/contact.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/history.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/userdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/userdata.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/tab_icon_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/tab_icon_tag.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/table_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/table_layout.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/window_new16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/window_new16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol64.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/farbtastic-1.2/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/farbtastic-1.2/mask.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_arrow_up.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_play_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_play_up.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/drag_handle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/drag_handle_5.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder_closed.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/header_bg_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/header_bg_30.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_activity.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_download.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_filetype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_filetype.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_fs_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_fs_path.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_settings.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ome_text_109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ome_text_109.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/spinner_big2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/spinner_big2.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/t_axis_revert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/t_axis_revert.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/tab_icon_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/tab_icon_tag.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/z_axis_revert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/z_axis_revert.gif -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/css/dusty.css: -------------------------------------------------------------------------------- 1 | .standard_form ol, ul { 2 | display: inline-block; 3 | } 4 | 5 | .standard_form li label { 6 | display:inline; 7 | } -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/color_line12_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/color_line12_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_image16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_image64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_locked32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_locked32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_plate16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_plate16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_plate32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_plate32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_plate64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_plate64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_screen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_screen16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_screen32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_screen32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_screen64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_screen64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_yellow16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_yellow16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_yellow32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_yellow32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_yellow64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_yellow64.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/logo.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/ok.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/group_orange16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/group_orange16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_arrow_left.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_arrow_right.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_tag_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_tag_delete.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_tag_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_tag_remove.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_add.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_cut.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_user_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_user_select.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/loadingAnimation.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/logo_login_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/logo_login_web.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/message_nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/message_nodata.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/nuvola_apply22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/nuvola_apply22.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/nuvola_cancel16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/nuvola_cancel16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/personal16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/personal16_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/table_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/table_arrow_down.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/table_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/table_arrow_up.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/view_detailed16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/view_detailed16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/farbtastic-1.2/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/farbtastic-1.2/marker.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/farbtastic-1.2/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/farbtastic-1.2/wheel.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ajax-loader-ovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ajax-loader-ovl.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrowDown_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrowDown_grey.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/arrowRight_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/arrowRight_grey.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/basket_light_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/basket_light_24.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_arrow_down.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_arrow_left.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_arrow_right.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_play_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_play_down.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_play_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_play_left.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/blue_play_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/blue_play_right.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/colorpicker_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/colorpicker_16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/datepicker_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/datepicker_next.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/datepicker_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/datepicker_prev.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/dropdown_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/dropdown_arrow.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder_image16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder_image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder_image32.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/folder_yellow16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/folder_yellow16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_download2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_download2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_help_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_help_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_script_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_script_dark.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_view_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_view_error.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/mail_send_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/mail_send_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/message_nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/message_nodata.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/navigator_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/navigator_back.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/table_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/table_arrow_down.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/table_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/table_arrow_up.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/white_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/white_arrow_down.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/white_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/white_arrow_up.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/custom_login_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/custom_login_logo.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_image16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_image16_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_plate16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_plate16_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/blank.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/spellc.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/handle.horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/handle.horizontal.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_copy_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_copy_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_cut_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_cut_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_delete.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_user_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_user_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_scientist_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_scientist_36.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_settings_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_settings_mail.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_settings_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_settings_user.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_chat.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_chat2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_clean.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_copy.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_paste.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_share.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image_locked16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image_locked16_old.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/grab.cur -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/OME_logo_grey_110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/OME_logo_grey_110.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/activity_light_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/activity_light_24.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/contextbox_arrowup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/contextbox_arrowup.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/glencoe_drop_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/glencoe_drop_logo.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_logout_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_logout_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/navigator_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/navigator_forward.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/tray_collapse_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/tray_collapse_left.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/calendar_arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/calendar_arrow_left.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/calendar_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/calendar_arrow_right.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_cap.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_foot.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/dropdown_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/dropdown_right_arrow.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/eclipse_copy_edit12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/eclipse_copy_edit12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/eclipse_copy_edit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/eclipse_copy_edit16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/eclipse_paste_edit12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/eclipse_paste_edit12.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/eclipse_paste_edit16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/eclipse_paste_edit16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_html_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_html_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_image_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_image_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_plate_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_plate_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_yellow16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_yellow16_old.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/indicator.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/group_dropdown_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/group_dropdown_arrow.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_basket_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_basket_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_delete_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_delete_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_paste_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_paste_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_remove_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_remove_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_openwith_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_openwith_toolbar.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_settings_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_settings_groups.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_basket.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_clean2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_clean2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_delete.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_refresh.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_refresh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_refresh2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_remove.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_remove2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_remove2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_toolbar_share2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_toolbar_share2.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image_locked_slash16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image_locked_slash16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/left_sidebar_icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/left_sidebar_icon_map.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/left_sidebar_icon_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/left_sidebar_icon_tag.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/menu/menu_with_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/menu/menu_with_import.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/nuvola_script-run16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/nuvola_script-run16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/select_dropdown_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/select_dropdown_arrow.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/table_arrow_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/table_arrow_up_down.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/tango_text-x-python16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/tango_text-x-python16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol_locked32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol_locked32.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/wp_protocol_locked64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/wp_protocol_locked64.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/bg.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_11.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_11.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/blank.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/bg_thataintgonnafly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/bg_thataintgonnafly.jpg -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/contextbox_arrowup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/contextbox_arrowup2.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/dropdown_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/dropdown_left_arrow.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/dropdown_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/dropdown_right_arrow.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_figure_scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_figure_scripts.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/icon_settings_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/icon_settings_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/nuvola_script-run16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/nuvola_script-run16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/tray_collapse_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/tray_collapse_right.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_cap_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_cap_rev.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/folder_screen_locked16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/folder_screen_locked16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/googiespell/change_lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/googiespell/change_lang.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_basic_newwindow_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_basic_newwindow_16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_scientist_group_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_scientist_group_36.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/image_deleted_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/image_deleted_thumbnail.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/left_sidebar_icon_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/left_sidebar_icon_tags.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/nuvola_script-run16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/nuvola_script-run16_old.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/asc.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/desc.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/16px_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/16px_plus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_plus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_show.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_plus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_show.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/grabbing.cur -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/nuvola_encrypted_grey16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/nuvola_encrypted_grey16.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/OME-Interface-Playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/OME-Interface-Playground.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/XPButtonUploadText_61x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/XPButtonUploadText_61x22.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_foot_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_foot_rev.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_repeater.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/drag_handle_arrows_up-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/drag_handle_arrows_up-down.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/icon_settings_drivespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/icon_settings_drivespace.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/left_sidebar_icon_public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/left_sidebar_icon_public.png -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/nuvola_download_manager16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/nuvola_download_manager16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/asc-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/asc-big.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/16px_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/16px_minus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/32px_minus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/64px_minus.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_128.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_256.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_256.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_512.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/panojs-2.0.0/images/progress_512.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/dropdown_left_arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/dropdown_left_arrow_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/dropdown_right_arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/dropdown_right_arrow_hover.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-cry18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-cry18.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/comment/comment_repeater_rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/comment/comment_repeater_rev.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.chosen-1.8.7/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.chosen-1.8.7/chosen-sprite.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/desc-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.tablesorter-2.0.3/desc-big.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-cool18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-cool18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-frown18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-frown18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-kiss18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-kiss18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-smile18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-smile18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-wink18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-wink18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-yell18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-yell18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/iconmonstr-sitemap-6-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/iconmonstr-sitemap-6-icon-16.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/nuvola_encrypted_grey16_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/nuvola_encrypted_grey16_old.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/JQuerySpinBtn-1.3a/img/spinbtn_updn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/JQuerySpinBtn-1.3a/img/spinbtn_updn.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.chosen-1.8.7/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.chosen-1.8.7/chosen-sprite@2x.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-laughing18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-laughing18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-embarassed18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-embarassed18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-surprised18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-surprised18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-tongue-out18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-tongue-out18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-undecided18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/webgateway/img/emots/tinymce_smiley-undecided18.gif -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/32px.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/40px.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery.jstree-3.3.12/themes/default/throbber.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/scroller/productbrowser_scroller_20080115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/scroller/productbrowser_scroller_20080115.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-h.gif -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-v.gif -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/scroller/productbrowser_background_20070622.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/scroller/productbrowser_background_20070622.jpg -------------------------------------------------------------------------------- /omeroweb/webclient/static/webclient/image/scroller/productbrowser_scrollbar_20070622.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webclient/static/webclient/image/scroller/productbrowser_scrollbar_20070622.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webgateway/static/3rdparty/jquery-ui-1.13.2/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-anim-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-anim-h.gif -------------------------------------------------------------------------------- /omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-anim-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ome/omero-web/HEAD/omeroweb/webadmin/static/webadmin/javascript/jquery.imgareaselect-0.9.10/css/border-anim-v.gif -------------------------------------------------------------------------------- /omeroweb/version.py: -------------------------------------------------------------------------------- 1 | try: 2 | from omero_version import omero_version 3 | from omero_version import build_year as omero_buildyear 4 | except ImportError: 5 | # Especially common during setup.py 6 | omero_version = "unknown" 7 | omero_buildyear = "unknown" 8 | 9 | 10 | omeroweb_version = "5.30.1.dev0" 11 | omeroweb_buildyear = "2024" 12 | -------------------------------------------------------------------------------- /omeroweb/custom_context_processor.py: -------------------------------------------------------------------------------- 1 | from omeroweb.version import omeroweb_version as omero_version 2 | from django.conf import settings 3 | 4 | 5 | def url_suffix(request): 6 | suffix = "?_%s" % omero_version 7 | return {"url_suffix": suffix} 8 | 9 | 10 | def base_include_template(request): 11 | return {"base_include_template": settings.BASE_INCLUDE_TEMPLATE} 12 | -------------------------------------------------------------------------------- /omeroweb/feedback/templates/404.html: -------------------------------------------------------------------------------- 1 | {% extends "base_error.html" %} 2 | {% load i18n %} 3 | 4 | {% block content %} 5 |
{% trans "The requested object or URL was not found on this server. The link you followed is either outdated, inaccurate, or the server has been instructed not to let you have it." %}
The script service cannot find a processor to run this script ID: {{ scriptId }}. You should contact your System Administrator.
17 | 18 |{% trans "The server encountered an internal error and was unable to complete your request. Please contact your system administrator with the error message below." %}
9 | 10 | {% if error %}Please contact your system administrator or the Open Microscopy Environment
22 | {% endblock %} 23 |
{{ error }}
27 | {% else %}
28 |
Password reset OK
29 | {% endif %}
30 |
--------------------------------------------------------------------------------
/omeroweb/webadmin/webadmin_utils.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: utf-8 -*-
3 | import logging
4 |
5 | logger = logging.getLogger(__name__)
6 |
7 |
8 | def upgradeCheck(url):
9 | # upgrade check:
10 | # -------------
11 | # On each startup OMERO.web checks for possible server upgrades
12 | # and logs the upgrade url at the WARNING level. If you would
13 | # like to disable the checks, please set 'omero.web.upgrades_url`
14 | # to an empty string.
15 | #
16 | # For more information, see
17 | # https://docs.openmicroscopy.org/latest/omero/sysadmins/UpgradeCheck.html
18 | #
19 | try:
20 | from omero.util.upgrade_check import UpgradeCheck
21 |
22 | if url:
23 | check = UpgradeCheck("web", url=url)
24 | check.run()
25 | if check.isUpgradeNeeded():
26 | logger.warn(
27 | "Upgrade is available. Please visit"
28 | " https://downloads.openmicroscopy.org/latest/omero/.\n"
29 | )
30 | else:
31 | logger.debug("Up to date.\n")
32 | except Exception as x:
33 | logger.error("Upgrade check error: %s" % x)
34 |
--------------------------------------------------------------------------------
/omeroweb/webgateway/static/3rdparty/jquery.flot-0.8.3/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2007-2014 IOLA and Ole Laursen
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/omeroweb/webclient/templates/webclient/base/includes/logo.html:
--------------------------------------------------------------------------------
1 | {% load i18n %}
2 | {% comment %}
3 |
20 | {% endcomment %}
21 |
22 |
27 | {% if ome.logo_src %}
28 | This is because there are not sufficient settings configured to facilitate sending emails. Please configure OMERO web according to the documentation and restart the web server.
33 |