diff --git a/doc/user/buffer.htm b/doc/user/buffer.htm
index 10dec3a7..a1895602 100644
--- a/doc/user/buffer.htm
+++ b/doc/user/buffer.htm
@@ -19,30 +19,30 @@
three commands have been defined:
The Buf object is responsible for creating and deleting Rünbuffers. The syntax is:
-- Buf new name creates a new empty Rünbuffer with the name name. name will be installed as a SICS object afterwards.
-
- Buf copy name1 name2 copies Rünbuffer name1 to buffer name2.
-
- Buf del name deletes the Rünbuffer name.
+
- Buf new name creates a new empty Rünbuffer with the name name. name will be installed as a SICS object afterwards.
+
- Buf copy name1 name2 copies Rünbuffer name1 to buffer name2.
+
- Buf del name deletes the Rünbuffer name.
After creation, the Rünbuffer is accessible by his name. It
then understands the commands:
-- NAME append what shall we do with a drunken sailor will add all text after append as a new line at the end of the Rünbuffer.
-
- NAME print will list the contents of the Rünbuffer.
-
- NAME del iLine will delete line number iLine from the Rünbuffer.
-
- NAME ins iLine BimBamBim inserts a new line after line iLine into the Rünbuffer. The line will consist of everything given after the iLine.
-
- NAME subst pattern newval replaces all occurences of pattern in the Rünbuffer by the text specified as newval. Currently this feature allows only exact match but may be expanded to Unix style regexp or shell like globbing.
-
- NAME save filename saves the contents of the Rünbuffer into file filename.
-
- NAME load filename loads the Rünbuffer with the data in file filename.
-
- NAME run executes the Rünbuffer.
+
- NAME append what shall we do with a drunken sailor will add all text after append as a new line at the end of the Rünbuffer.
+
- NAME print will list the contents of the Rünbuffer.
+
- NAME del iLine will delete line number iLine from the Rünbuffer.
+
- NAME ins iLine BimBamBim inserts a new line after line iLine into the Rünbuffer. The line will consist of everything given after the iLine.
+
- NAME subst pattern newval replaces all occurences of pattern in the Rünbuffer by the text specified as newval. Currently this feature allows only exact match but may be expanded to Unix style regexp or shell like globbing.
+
- NAME save filename saves the contents of the Rünbuffer into file filename.
+
- NAME load filename loads the Rünbuffer with the data in file filename.
+
- NAME run executes the Rünbuffer.
The Rünlist is accessible as object stack . Only one Rünlist per server is permitted. The syntax:
-- stack add name adds Rünbuffer name to the top of the stack.
+
- stack add NAME adds Rünbuffer name to the top of the stack.
- stack list lists the current Rünlist.
-
- stack del iLine deletes the Rünbuffer iLine from the Rünlist.
-
- stack ins iLine name inserts Rünbuffer name after Rünbuffer number iLine into the Rünlist.
+
- stack del iLine deletes the Rünbuffer iLine from the Rünlist.
+
- stack ins iLine NAME inserts Rünbuffer name after Rünbuffer number iLine into the Rünlist.
- stack run executes the Rünlist and returns when all Rünbuffers are done.
- stack batch executes the Rünlist but does not return when done but waits for further Rünbuffers to be added to the list. This feature allows a sort of background process in the server.
diff --git a/doc/user/commandlog.htm b/doc/user/commandlog.htm
index 807e4b11..3ed7774c 100644
--- a/doc/user/commandlog.htm
+++ b/doc/user/commandlog.htm
@@ -12,7 +12,7 @@ file or can be
configured by the instrument manager. There exists a special command,
commandlog, which allows to control this log file.
-- commandlog new filename
+
- commandlog new filename
- starts a new commandlog writing to filename. Any prior files will be
closed. The log file can be found
in the directory specified by the ServerOption LogFileDir. Usually this is
@@ -25,7 +25,7 @@ the log directory.
- Switches automatic log file creation on. This is normally switched on.
Log files are written to the log directory of the instrument account. There
are time stamps any hour in that file and there is a new file any 24 hours.
-
- commandlog tail n
+
- commandlog tail [n]
- prints the last n entries made into the command log. n is optional and defaults to 20. Up to 1000 lines are held in an internal buffer for this command.
It is now possible to have a script executed whenever a new log file is
diff --git a/doc/user/count.htm b/doc/user/count.htm
index 5953938c..1bd21752 100644
--- a/doc/user/count.htm
+++ b/doc/user/count.htm
@@ -3,19 +3,18 @@
Counting Commands
-Counting Commands.
-
-
-- count mode preset
-
- Does a count operation in mode with a preset of preset.
- The parameters are optional. If they are not
- given the count will be started with the current setting in the histogram
-memory object. After the count, StoreData will be automatically called.
-
- Repeat num mode preset.
+
Counting Commands
+
+- count [mode preset]
+
- Does a count operation in mode with a given preset.
+ Mode can be timer or monitor.
+ The parameters mode and preset are optional. If they
+ are not given the count will be started with the
+ current setting in the histogram memory object.
+
- repeat num mode preset.
- Calls count num times. num is a required parameter. The other two are
optional and are handled as described above for count.
-
+
Both commands make sure, that measured data is written to files.
-