• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • ← Previous Change
  • Next Change →

Changeset 2295 for branches

Show
Ignore:
Timestamp:
03/12/08 12:10:08 (9 months ago)
Author:
brain
Message:

Cleaning up and removing omero.importer branch

Location:
branches/3.0-Beta2.3/components/bioformats-omero
Files:
1 added
2 removed
2 modified

  • .classpath (modified) (3 diffs)
  • lib/jcalendar-1.3.2.jar (deleted)
  • lib/swingx-2007_09_16.jar (added)
  • src/ome/formats/importer/HistoryTable.java (modified) (1 diff)
  • src/omero (deleted)

Legend:

Unmodified
Added
Removed
  • branches/3.0-Beta2.3/components/bioformats-omero/.classpath

    r2228 r2295  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<classpath> 
    3         <classpathentry kind="src" path="test"/> 
    4         <classpathentry kind="src" path="target/generated/resources"/> 
    53        <classpathentry kind="src" path="src"/> 
    64        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 
    7         <classpathentry kind="src" path="resources"/> 
    85        <classpathentry kind="lib" path="lib/TableLayout.jar"/> 
    96        <classpathentry kind="lib" path="lib/spring-2.0.6.jar"/> 
    … …  
    2623        <classpathentry kind="lib" path="lib/common-3.0-Beta2.3.jar"/> 
    2724        <classpathentry kind="lib" path="lib/client-3.0-Beta2.3.jar"/> 
    28         <classpathentry kind="lib" path="lib/jcalendar-1.3.2.jar"/> 
    2925        <classpathentry kind="lib" path="lib/hsqldb.jar"/> 
    3026        <classpathentry kind="lib" path="lib/jai_imageio.jar"/> 
    … …  
    3430        <classpathentry kind="lib" path="lib/swing-layout.jar"/> 
    3531        <classpathentry kind="lib" path="lib/netcdf-4.0.jar"/> 
     32        <classpathentry kind="lib" path="lib/bufr-1.1.00.jar"/> 
     33        <classpathentry kind="lib" path="lib/grib-5.1.03.jar"/> 
     34        <classpathentry kind="lib" path="lib/slf4j-jdk14.jar"/> 
     35        <classpathentry kind="lib" path="lib/swingx-2007_09_16.jar"/> 
    3636        <classpathentry kind="output" path="bin"/> 
    3737</classpath> 
  • branches/3.0-Beta2.3/components/bioformats-omero/src/ome/formats/importer/HistoryTable.java

    r2294 r2295  
    516516                if (oldDatasetID != datasetID) 
    517517                { 
    518                     oldDatasetID = datasetID; 
    519                     datasetName = store.getDatasetName(rs.getLong("datasetID"));                     
     518                    try  
     519                    { 
     520                        oldDatasetID = datasetID; 
     521                        datasetName = store.getDatasetName(rs.getLong("datasetID"));  
     522                    } catch (ome.conditions.InternalException e) 
     523                    { 
     524                        String message = "There was an error accessing one of the dataset/projects\n" + 
     525                                                 "you requested on the OMERO server. Your connection to the\n" + 
     526                                                 "server may have been severed, or your dataset/project may\n" + 
     527                                                 "have been deleted."; 
     528                        JOptionPane.showMessageDialog(this, message, "Unable to Complete Request", JOptionPane.WARNING_MESSAGE); 
     529                    } 
    520530                } 
    521531                 

Download in other formats:

  • Unified Diff
  • Zip Archive

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/