This gist has migrated to https://github.com/openmicroscopy/ome-release
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.class | |
| libs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ( | |
| set -e | |
| set -u | |
| export CLASSPATH=.:`echo lib/server/*.jar | sed 's/ /:/g'` | |
| cat > ldap.xml <<EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import traceback | |
| import tempfile | |
| import fcntl | |
| import sys | |
| import os | |
| try: | |
| d, = sys.argv[1:] | |
| except ValueError: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openmicroscopy | |
| **************************************************************************************************** | |
| PRs on dev_4_4 without note for develop | |
| **************************************************************************************************** | |
| 120e393 Merge pull request #1213 from jburel/reader-close => see #1191 (relevant commit cherry-picked) | |
| 5373348 Merge pull request #1033 from jburel/download-image-metadata 10 weeks ago => #1064 | |
| 8cb50fb Merge pull request #1010 from jburel/big-image-refactor 3 months ago => See #1013 | |
| 6fe6155 Merge pull request #981 from scottlittlewood/insight-import-as-ui-dev-4-4 3 months ago => see #1015 | |
| 8937406 Merge pull request #1128 from joshmoore/10824-reflective-network 8 weeks ago => see #1278 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| This script searches for Images, using database queries queries generated | |
| from a number of parameters. | |
| """ | |
| import omero.scripts as scripts | |
| from omero.gateway import BlitzGateway | |
| from omero.rtypes import * | |
| from datetime import datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| This script searches for Images, using database queries queries generated | |
| from a number of parameters. | |
| """ | |
| import omero.scripts as scripts | |
| from omero.gateway import BlitzGateway | |
| from omero.rtypes import * | |
| from datetime import datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/docs/install/VM/omerovm.sh b/docs/install/VM/omerovm.sh | |
| index 0ec39c1..c7ac376 100644 | |
| --- a/docs/install/VM/omerovm.sh | |
| +++ b/docs/install/VM/omerovm.sh | |
| @@ -41,6 +41,7 @@ function installvm () | |
| SCP="scp -2 -o NoHostAuthenticationForLocalhost=yes -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o CheckHostIP=no -o PasswordAuthentication=no -o ChallengeResponseAuthentication=no -o PreferredAuthentications=publickey -i omerovmkey -P $SSH_PF" | |
| SSH="ssh -2 -o StrictHostKeyChecking=no -i omerovmkey -p $SSH_PF -t" | |
| echo "Copying scripts to VM" | |
| + $SCP ../../../target/OMERO.server*zip omero@localhost:~/ | |
| $SCP driver.sh omero@localhost:~/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from omero.gateway import BlitzGateway | |
| import omero | |
| from omero.rtypes import rstring | |
| from omero_model_ProjectI import ProjectI | |
| from omero_model_DatasetI import DatasetI | |
| from omero_model_ProjectDatasetLinkI import ProjectDatasetLinkI | |
| from omero_model_ExperimenterI import ExperimenterI | |
| from omero_model_ExperimenterGroupI import ExperimenterGroupI | |
| from omero_model_PermissionsI import PermissionsI | |
| from omero_model_TagAnnotationI import TagAnnotationI |