Hi,
Patch contains
1. String Change : s/Master Server Address/Master Server Private URL.
2. Defaults to port 80 instead of 8086.
Please review.
Thanks,
Johnny
Index: src/server/ChangeLog
===================================================================
--- src/server/ChangeLog (revision 6635)
+++ src/server/ChangeLog (working copy)
@@ -1,3 +1,8 @@
+2206-12-21 Johnny Jacob <[EMAIL PROTECTED]>
+
+ * setup/SimiasServerSetup.cs : Defaults to port 80.
+ String Change : s/Master Server Address/Master Server Private URL.
+
2006-12-12 Johnny Jacob <[EMAIL PROTECTED]>
*setup/SimiasServerSetup.cs : s/SimiasDataPath/SimiasDataDir .
Index: src/server/setup/SimiasServerSetup.cs
===================================================================
--- src/server/setup/SimiasServerSetup.cs (revision 6635)
+++ src/server/setup/SimiasServerSetup.cs (working copy)
@@ -158,7 +158,7 @@
/// <summary>
/// The master server address.
/// </summary>
- public Option masterAddress = new Option("master-address,ma", "Master Server Address", "Address of the Master Server", false, null);
+ public Option masterAddress = new Option("master-address,ma", "Master Server Private URL", "Private URL of the Master Server", false, null);
/// <summary>
/// Simias System Name
@@ -250,7 +250,7 @@
{
args = cmdArgs;
System.Net.IPHostEntry hostInfo = System.Net.Dns.GetHostByName( System.Net.Dns.GetHostName() );
- Uri pubUrl = new Uri( Uri.UriSchemeHttp + "://" + hostInfo.AddressList[0].ToString() + ":8086" + "/simias10" );
+ Uri pubUrl = new Uri( Uri.UriSchemeHttp + "://" + hostInfo.AddressList[0].ToString() + ":80" + "/simias10" );
publicUrl.DefaultValue = pubUrl.ToString();
if ( MyEnvironment.Windows )
{
@@ -626,7 +626,7 @@
Uri.UriSchemeHttp +
"://" +
System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName()).AddressList[0].ToString() +
- ":8086" +
+ ":80" +
"/simias10");
string pubAddress = config.Get( ServerSection, PublicAddressKey );
publicUrl.DefaultValue = ( pubAddress == null ) ? defaultUrl.ToString() : pubAddress;
_______________________________________________
ifolder-dev mailing list
[email protected]
http://forge.novell.com/mailman/listinfo/ifolder-dev