Changeset 2108

Show
Ignore:
Timestamp:
03/19/07 07:32:31 (2 years ago)
Author:
merlimat
Message:

EclipseTracPlugin:

Finally got a Trac over https test bed and figured out
what was going wrong. Closes #1324

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/server/NewTracServerPage.java

    r2016 r2108  
    137137            url = new URL( getServerUrl() ); 
    138138             
    139             if ( ! "http".equals( url.getProtocol() )
     139            if ( ! "http".equals( url.getProtocol() ) && ! "https".equals( url.getProtocol() )
    140140            { 
    141                 updateStatus( "Invalid protocol scheme '" + url.getProtocol() + "'. Must be 'http' " ); 
     141                updateStatus( "Invalid protocol scheme '" + url.getProtocol() + "'. Must be 'http' or 'https' " ); 
    142142                return; 
    143143            }