aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2005-05-05 20:55:24 +0000
committerschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2005-05-05 20:55:24 +0000
commit1f3ff287ad489c9a49a2d0ab13669e22f71effab (patch)
treee8aac06c583437794e38537228fa6400c2fb2fb2
parentdaf275655975cae5b914f380a599358593ced786 (diff)
Correct some minor errors in comments.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@219 1faa4e14-9dd3-4be0-9f0e-ffe519881164
-rw-r--r--README8
-rw-r--r--interface.ccl2
-rw-r--r--param.ccl4
-rw-r--r--schedule.ccl8
-rw-r--r--src/Startup.c5
5 files changed, 17 insertions, 10 deletions
diff --git a/README b/README
index 162e6f7..95db6e3 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
-Cactus Code Thorn httpd
-Authors : Gabrielle Allen (allen@aei.mpg.de),
- Tom Goodale (goodale@aei.mpg.de),
- Thomas Radke (tradke@aei.mpg.de)
+Cactus Code Thorn HTTPD
+Authors : Gabrielle Allen <allen@aei.mpg.de>,
+ Tom Goodale <goodale@aei.mpg.de>,
+ Thomas Radke <tradke@aei.mpg.de>
CVS info : $Header$
--------------------------------------------------------------------------
diff --git a/interface.ccl b/interface.ccl
index e47f5ce..58c695e 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -1,4 +1,4 @@
-# Interface definition for thorn httpd
+# Interface definition for thorn HTTPD
# $Header$
Implements: HTTPD
diff --git a/param.ccl b/param.ccl
index abb0d14..c9ce914 100644
--- a/param.ccl
+++ b/param.ccl
@@ -1,4 +1,4 @@
-# Parameter definitions for thorn httpd
+# Parameter definitions for thorn HTTPD
# $Header$
shares: Cactus
@@ -102,7 +102,7 @@ BOOLEAN single_step "Do one step then pause ?" STEERABLE = ALWAYS
{
} "no"
-# Interate until
+# Iterate until
BOOLEAN until_it_active "Use until_it parameter ?" STEERABLE = ALWAYS
{
diff --git a/schedule.ccl b/schedule.ccl
index 8f76c39..63a13d0 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,13 +1,15 @@
-# Schedule definitions for thorn httpd
+# Schedule definitions for thorn HTTPD
# $Header$
SCHEDULE GROUP HTTP_Startup AT startup
{
+ OPTIONS: GLOBAL
} "HTTP daemon startup group"
SCHEDULE HTTP_StartServer in HTTP_Startup
{
LANG: C
+ OPTIONS: GLOBAL
} "Start HTTP server"
SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
@@ -17,11 +19,13 @@ SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
SCHEDULE HTTP_FirstServ in HTTP_Startup AFTER HTTP_SetupPages
{
LANG: C
+ OPTIONS: GLOBAL
} "Serve first pages at startup"
SCHEDULE HTTP_Work AT poststep BEFORE IOUtil_UpdateParFile
{
LANG: C
+ OPTIONS: GLOBAL
} "Working routine"
if(provide_pages)
@@ -29,10 +33,12 @@ if(provide_pages)
SCHEDULE HTTP_ContentWork AT poststep
{
LANG: C
+ OPTIONS: GLOBAL
} "Content Working routine"
}
SCHEDULE HTTP_Shutdown AT shutdown
{
LANG: C
+ OPTIONS: GLOBAL
} "HTTP daemon shutdown"
diff --git a/src/Startup.c b/src/Startup.c
index a12aef6..70fbe6a 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -142,12 +142,13 @@ int HTTP_StartServer(void)
@date Tue Nov 12 20:32:36 2002
@author Tom Goodale
@desc
- Listens for connection requests.
+ Listen for connection requests.
@enddesc
@calls
@calledby
@history
- @hdate Tue Nov 12 20:33:07 2002 @hauthor Tom Goodale
+ @hdate Tue Nov 12 20:33:07 2002
+ @hauthor Tom Goodale
@hdesc This was originally in HTTP_StartServer but
that made it impossible to spawn a task telling
it where the webserver was if httpd::pause was "true".