AbstractLauncherApplication.st
changeset 2306 8d8172bccbc7
parent 2304 7b32d2b8784d
child 2307 6aa722a14c1a
--- a/AbstractLauncherApplication.st	Tue Jul 27 16:24:56 1999 +0200
+++ b/AbstractLauncherApplication.st	Tue Jul 27 18:19:00 1999 +0200
@@ -1324,6 +1324,14 @@
     org_httpServerPort := httpServerPort.
     httpServerPort := httpServerPort asValue.
 
+    httpServerRunning 
+        onChangeSend:#value 
+        to:[
+            httpServerFileRoot value:(HTTPServer fileRoot).
+            httpServerHomeURL value:(HTTPServer homeURL).
+            httpServerPort value:(HTTPServer defaultPort).
+        ].
+
     hasSwiki := false.
     swikiEnabled := false.
 
@@ -1340,6 +1348,12 @@
     swikiRoot := swikiRoot asValue.
     swikiEnabled := swikiEnabled asValue.
 
+    swikiEnabled
+        onChangeSend:#value 
+        to:[
+            swikiRoot value:(PWS::SwikiAction serverDirectory).
+        ].
+
     "/
     "/ osi settings ...
     "/
@@ -4752,5 +4766,5 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.69 1999-07-26 17:52:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.70 1999-07-27 16:19:00 cg Exp $'
 ! !