Changeset 5632
- Timestamp:
- 09/29/08 12:20:31 (8 weeks ago)
- Location:
- trunk
- Files:
-
- 6 modified
-
SRC/org/openmicroscopy/shoola/env/LookupNames.java (modified) (1 diff)
-
SRC/org/openmicroscopy/shoola/env/data/login/LoginService.java (modified) (1 diff)
-
SRC/org/openmicroscopy/shoola/env/init/ContainerConfigInit.java (modified) (1 diff)
-
SRC/org/openmicroscopy/shoola/env/ui/SplashScreenManager.java (modified) (1 diff)
-
SRC/org/openmicroscopy/shoola/env/ui/TaskBarManager.java (modified) (1 diff)
-
config/container.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/SRC/org/openmicroscopy/shoola/env/LookupNames.java
r5605 r5632 58 58 59 59 /** Field to access the <code>Splash screen</code> information. */ 60 public static final String SPLASH_SCREEN = "SplashScreen";60 public static final String SPLASH_SCREEN_LOGO = "SplashScreenLogo"; 61 61 62 62 /** Field to access the <code>Help on line</code> information. */ -
trunk/SRC/org/openmicroscopy/shoola/env/data/login/LoginService.java
r5429 r5632 196 196 public static final int ATTEMPTING_LOGIN = 1; 197 197 198 /** Flag indicating that the client is connected to the server. */ 198 199 public static final int CONNECTED = 1; 199 200 201 /** Flag indicating that the client is not connected to the server. */ 200 202 public static final int NOT_CONNECTED = 0; 201 203 204 /** Flag indicating that the connection's attempt's has time out. */ 202 205 public static final int TIMEOUT = 2; 203 204 206 205 207 /** -
trunk/SRC/org/openmicroscopy/shoola/env/init/ContainerConfigInit.java
r5183 r5632 25 25 26 26 //Java imports 27 import java.io.File; 27 28 28 29 //Third-party libraries 29 30 30 31 //Application-internal dependencies 31 import java.io.File;32 33 32 import org.openmicroscopy.shoola.env.Container; 34 33 import org.openmicroscopy.shoola.env.LookupNames; -
trunk/SRC/org/openmicroscopy/shoola/env/ui/SplashScreenManager.java
r5575 r5632 180 180 this.component = component; 181 181 Image img = IconManager.getOMEImageIcon(); 182 String n = (String) c.getRegistry().lookup(LookupNames.SPLASH_SCREEN );182 String n = (String) c.getRegistry().lookup(LookupNames.SPLASH_SCREEN_LOGO); 183 183 IconManager im = IconManager.getInstance(c.getRegistry()); 184 184 Icon splashScreen = im.getIcon(n); -
trunk/SRC/org/openmicroscopy/shoola/env/ui/TaskBarManager.java
r5575 r5632 87 87 88 88 /** The window's title. */ 89 static final String TITLE_ABOUT = "About";89 static final String TITLE_ABOUT = "About"; 90 90 91 91 /** The value of the tag to find. */ -
trunk/config/container.xml
r5628 r5632 265 265 * Information related to the version of the software, name of the software, 266 266 * etc. 267 *268 267 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 269 268 <entry name="Version">Beta3.1rc3</entry> 270 269 <entry name="SoftwareName">OMERO.insight</entry> 271 270 <entry name="AboutFile">about.xml</entry> 272 <entry name="SplashScreen ">client_splashscreen.png</entry>273 <entry name="HelpOnLine">http:// www.openmicroscopy.org</entry>271 <entry name="SplashScreenLogo">client_splashscreen.png</entry> 272 <entry name="HelpOnLine">http://trac.openmicroscopy.org.uk/shoola/wiki/OmeroInsightGettingStarted</entry> 274 273 </container>
