Changeset 2108
- Timestamp:
- 03/19/07 07:32:31 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/server/NewTracServerPage.java
r2016 r2108 137 137 url = new URL( getServerUrl() ); 138 138 139 if ( ! "http".equals( url.getProtocol() ) )139 if ( ! "http".equals( url.getProtocol() ) && ! "https".equals( url.getProtocol() ) ) 140 140 { 141 updateStatus( "Invalid protocol scheme '" + url.getProtocol() + "'. Must be 'http' " );141 updateStatus( "Invalid protocol scheme '" + url.getProtocol() + "'. Must be 'http' or 'https' " ); 142 142 return; 143 143 }
